.motorcycleShowcaseContainer {
    overflow: hidden;
    margin-bottom: 20px;
    min-height: 400px;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.woocommerce img, .woocommerce-page img {
    height: 100%;
    max-width: 100%;
}

.motorcycleShowcaseImageWrapper {
    position: relative;
    width: 100%;
    height: 500px;
}

.motorcycleShowcaseImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.motorcycleShowcaseContainer .motorcycleShowcaseImageWrapper .motorcycleShowcaseImage{
    width: 100%;
    height: 100%;
}

.motorcycleShowcaseImageWrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);*/
    z-index: 1;
}

.motorcycleShowcaseContent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    z-index: 2;
    color: var(--neutro1);
}

.motorcycleShowcaseTitle {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
    color: var(--neutro1);
}

.motorcycleShowcaseDescription {
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 90%;
    color: var(--neutro1) ;
}

.motorcycleShowcaseButtons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 90%;
}

.motorcycleShowcaseButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 400px;
    max-width: 100%;
}

.motorcycleShowcaseButtonPrimary {
    background-color: var(--color1);
    color: var(--neutro1);
    border: 2px solid var(--color1);
}

.motorcycleShowcaseButtonPrimary:hover {
    background-color: var(--neutro1);
    border-color: var(--neutro1);
    color: var(--color1);
    width: 300px;
    height: 80px;
    border-radius: 15px;
}

.motorcycleShowcaseButtonSecondary {
    background-color: var(--neutro1);
    color: var(--color1);
    border: 2px solid var(--neutro1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.motorcycleShowcaseButtonSecondary:hover {
    background-color: var(--color1);
    border-color: var(--color1);
    color: var(--neutro1);
    width: 300px;
    height: 80px;
    border-radius: 15px;
}

.motorcycleShowcaseWhatsappIcon {
    display: inline-flex;
    align-items: center;
}

/* Tablet: 768px+ */
@media screen and (min-width: 768px) {
    .motorcycleShowcaseTitle {
        font-size: 28px;
        max-width: 70%;
    }

    .motorcycleShowcaseDescription {
        font-size: 20px;
        max-width: 70%;
    }

    .motorcycleShowcaseButtons {
        flex-direction: row;
    }

    .motorcycleShowcaseButton {
        font-size: 30px;
    }
}

/* Desktop: 1024px+ */
@media screen and (min-width: 1025px) {
    .motorcycleShowcaseContainer {
        height: 600px;
    }

    .motorcycleShowcaseImageWrapper {
        height: 100%;
    }

    .motorcycleShowcaseImage {
        height: 100%;
        object-position: center;
    }

    .motorcycleShowcaseTitle {
        font-size: 50px;
        max-width: 60%;
    }

    .motorcycleShowcaseDescription {
        max-width: 90%;
    }

    .motorcycleShowcaseContent {
        padding: 100px;
    }
}

@media screen and (max-width: 1023px) {
    .motorcycleShowcaseContainer {
        height: 700px;
    }

    .motorcycleShowcaseContent {
        padding: 40px 20px;
    }

    .motorcycleShowcaseTitle {
        font-size: 40px;
        max-width: 100%;
    }

    .motorcycleShowcaseDescription {
        font-size: 14px;
        max-width: 100%;
    }

    .motorcycleShowcaseButtons {
        flex-direction: column;
        max-width: 100%;
        justify-content: center;
        align-items: center;
    }

    .motorcycleShowcaseButton {
        font-size: 16px;
    }
}

/* Fix: 425px and below (mobile) */
@media screen and (max-width: 425px) {
    .motorcycleShowcaseImageWrapper {
        
        max-height: 700px;
    }

    .motorcycleShowcaseTitle {
        font-size: 25px;
    }

    .motorcycleShowcaseDescription {
        font-size: 13px;
    }

    .motorcycleShowcaseButton {
        font-size: 14px;
    }
    .motorcycleShowcaseButtonPrimary:hover {
        height: 50px;
        width: 80%;
    }
    
    .motorcycleShowcaseButtonSecondary:hover {
        height: 50px;
        width: 80%;
    }
}
