.warehouse-section {
    position: relative;
    background: linear-gradient(rgba(35, 47, 62, 0.95), rgba(35, 47, 62, 0.95)),
                url('../assets/images/warehouse-background.webp') center/cover;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.warehouse-section-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.warehouse-section-left-column {
    flex: 1;
    text-align: center;
}

.robot-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.robot-mascot {
    width: 200px;
    aspect-ratio: 1 / 1;
    margin-bottom: 0;
    background: var(--amazon-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mascot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.homepage-welcome-section-title {
    font-size: 2.5rem;
    margin: 0 0 1rem 0; /* Top, Right, Bottom, Left */
    color: var(--amazon-orange);
}

.warehouse-description {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.launch-app-welcome-button {
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    background-color: var(--amazon-orange);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.launch-app-welcome-button:hover {
    background-color: #e67a00;
}

.warehouse-section-right-column {
    flex: 1;
    text-align: center;
    color: white;
}

.warehouse-section-right-column .homepage-features-section-title {
    color: var(--amazon-orange);
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.warehouse-section-right-column .homepage-features-feature-item-title {
    color: white;
    margin-top: 0;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.warehouse-section-right-column .homepage-features-feature-item-description {
    color: #f0f2f2;
    line-height: 1.5;
    opacity: 0.9;
}

.features-carousel-container {
    position: relative;
    overflow: hidden;
}

.features-carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.features-carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.feature-item-box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
}

.features-carousel-dots {
    text-align: center;
    padding: 10px 0;
}

.features-carousel-dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.features-carousel-dot.active {
    background-color: #717171;
}


@media (max-width: 768px) {
    .warehouse-section-container {
        flex-direction: column;
        gap: 1rem;
    }

    .warehouse-section-left-column {
        width: 100%;
    }

    .robot-title-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .robot-mascot {
        width: 120px;
        height: 120px;
    }

    .warehouse-title {
        font-size: 1.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
    }

    .warehouse-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .warehouse-section-right-column {
        width: 100%;
    }

    .warehouse-section-right-column .homepage-features-section-title {
        font-size: 1.4rem;
    }

    .feature-item-box {
        padding: 1rem;
    }
}
