.home-showcase {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    margin-top: 4%;
    box-sizing: border-box;
}

.footer-musellauto .footer-inner {
    justify-content: center;
}

.footer-musellauto,
.footer-musellauto p,
.footer-musellauto .copyright {
    color: #ffffff;
}

.footer-musellauto .copyright {
    justify-content: center;
    width: 100%;
    text-align: center;
}

.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    max-width: 980px;
    margin: 0 auto;
    padding: 18px 20px;
    color: #ffffff;
    background: rgba(27, 26, 30, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner__content {
    display: grid;
    gap: 5px;
}

.cookie-banner strong {
    font-family: "Sora", Sans-serif;
    font-size: 15px;
}

.cookie-banner p {
    margin: 0;
    color: #d8d8d8;
    font-family: "Inter", Sans-serif;
    font-size: 13px;
    line-height: 1.45;
}

.cookie-banner button {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 22px;
    color: #000000;
    background: #F8B406;
    border: 0;
    border-radius: 50px;
    font-family: "Sora", Sans-serif;
    font-weight: 700;
    cursor: pointer;
}

.cookie-banner button:hover,
.cookie-banner button:focus {
    background: #ffffff;
}

.home-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    width: 100%;
    box-sizing: border-box;
}

.home-showcase-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
    height: 100%;
    background: #252428;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    box-sizing: border-box;
}

.home-showcase-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #1a191d;
    text-decoration: none;
}

.home-showcase-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-showcase-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 22px 24px 24px;
    text-align: center;
}

.home-showcase-eyebrow {
    margin: 0 0 8px;
    color: #b7d78a;
    font-family: "Inter", Sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-showcase-title {
    margin: 0;
    color: #ffffff;
    font-family: "Sora", Sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-showcase-title-sm {
    font-size: 20px;
}

.home-showcase-title-xs {
    font-size: 17px;
}

.home-showcase-price {
    margin-top: 8px;
    color: #ffffff;
    font-family: "Roboto", Sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.05;
}

.home-showcase-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    width: min(100%, 330px);
    margin: 18px auto 0;
    padding: 0;
    min-height: 84px;
    color: #c9c9c9;
    font-family: "Inter", Sans-serif;
    font-size: 14px;
    line-height: 1.35;
    list-style: none;
}

.home-showcase-details li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 8px;
}

.home-showcase-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    font-size: 15px;
    line-height: 1;
}

.home-showcase-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    min-height: 42px;
    margin-bottom: 0;
    padding: 0 22px;
    color: #111013;
    background: #ffffff;
    border-radius: 999px;
    font-family: "Sora", Sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.home-showcase-link--secondary {
    min-width: min(100%, 320px);
    margin-top: 0;
    background: #F8B406;
}

.home-showcase-link:hover,
.home-showcase-link:focus {
    color: #111013;
    background: #b7d78a;
}

.home-showcase-link--secondary:hover,
.home-showcase-link--secondary:focus {
    background: #ffffff;
}

.home-showcase-actions {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.home-showcase-empty {
    width: 100%;
    padding: 42px 24px;
    color: #ffffff;
    background: #252428;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    text-align: center;
}

.home-showcase-empty h4 {
    margin: 0 0 8px;
    font-family: "Sora", Sans-serif;
    font-size: 24px;
}

.home-showcase-empty p {
    margin: 0;
    color: #c9c9c9;
    font-family: "Inter", Sans-serif;
}

@media (max-width: 1024px) {
    .home-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        align-items: stretch;
        flex-direction: column;
    }

    .cookie-banner button {
        width: 100%;
    }

    .home-showcase {
        margin-top: 15%;
    }

    .home-showcase-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .home-showcase-body {
        padding: 20px 18px 22px;
    }

    .home-showcase-title {
        font-size: 21px;
    }

    .home-showcase-title-sm {
        font-size: 18px;
    }

    .home-showcase-title-xs {
        font-size: 16px;
    }

    .home-showcase-price {
        font-size: 32px;
    }

    .home-showcase-details {
        grid-template-columns: 1fr;
        width: min(100%, 250px);
        min-height: 0;
    }

    .home-showcase-actions {
        margin-top: 20px;
    }

}

.elementor-element-02423a1 .elementor-gallery__container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.elementor-element-02423a1 .e-gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background: #1a191d;
    border-radius: 8px;
}

.elementor-element-02423a1 .e-gallery-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.elementor-element-02423a1 .elementor-gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.08);
}

.home-reveal {
    opacity: 0;
    transform: translateX(var(--home-reveal-start, -28px));
    will-change: opacity, transform;
}

.home-reveal-child,
.home-reveal-item {
    opacity: 0;
    transform: translateX(var(--home-reveal-start, -18px));
    will-change: opacity, transform;
}

.home-reveal-item {
    --home-reveal-start: -18px;
}

@keyframes homeSectionReveal {
    0% {
        opacity: 0;
        transform: translateX(var(--home-reveal-start, -28px));
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.home-reveal--right {
    --home-reveal-start: 28px;
}

.home-reveal--left {
    --home-reveal-start: -28px;
}

.home-reveal--counter {
    --home-reveal-start: 18px;
}

.home-reveal.is-visible,
.home-reveal-child.is-visible,
.home-reveal-item.is-visible {
    animation: homeSectionReveal 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--home-reveal-delay, 0ms);
}

@media (max-width: 1024px) {
    .elementor-element-02423a1 .elementor-gallery__container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .elementor-element-02423a1 .elementor-gallery__container {
        grid-template-columns: 1fr;
    }
}
