/* Mobile Hero Section Improvements - Clean Version */

/* Mobile Hero Image */
.intro__mobile-image {
    width: 100%;
    margin: 32px 0 24px;
    padding: 0 16px;
    box-sizing: border-box;
}

.intro__mobile-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: block;
}

/* Full-width Buttons for Mobile */
@media (max-width: 768px) {
    .intro__buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
        width: 100%;
    }
    
    .intro__buttons .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 15px;
        font-weight: 600;
        text-align: center;
        border-radius: 8px;
        min-height: 52px;
    }
}

/* Better Feature Icons Structure for Mobile */
@media (max-width: 768px) {
    .intro__items {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding-top: 32px;
        padding-bottom: 32px;
        margin-top: 32px;
        border-top: 1px solid rgba(0, 0, 0, 0.15);
    }
    
    .intro__items .item {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 18px;
        background: #f7f7f8;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        width: 100%;
        margin: 0 auto;
        max-width: 500px;
    }
    
    .intro__items .item:hover {
        background: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }
    
    .intro__items .item .item__yellow {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        background: #ebeb47;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 14px;
        box-shadow: 0 4px 12px rgba(235, 235, 71, 0.25);
    }
    
    .intro__items .item .item__yellow svg {
        width: 100%;
        height: 100%;
    }
    
    .intro__items .item .item__text {
        flex: 1;
        font-size: 14px;
        line-height: 1.45;
        color: #000;
        text-align: left;
    }
}

/* Product cards - WIDE on mobile (almost full screen width) */
@media (max-width: 768px) {
    .product__items.slider {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        align-items: center !important;
        padding: 0 !important;
    }
    
    .product__items.slider .item,
    .product__items.slider .cursor-product-card {
        width: calc(100vw - 32px) !important;
        max-width: calc(100vw - 32px) !important;
        margin: 0 !important;
    }
}

/* Ensure proper text alignment */
@media (max-width: 768px) {
    .intro {
        padding: 32px 0;
    }
    
    .intro__info {
        text-align: center;
    }
    
    .intro__info_title {
        font-size: 26px;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .intro__info_text {
        font-size: 15px;
        line-height: 1.6;
        margin-top: 12px;
    }
}

/* Small screens */
@media (max-width: 480px) {
    .intro__mobile-image {
        margin: 24px 0 16px;
        padding: 0 12px;
    }
    
    .intro__buttons .btn {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .intro__items {
        gap: 12px;
        padding-top: 24px;
        padding-bottom: 24px;
    }
    
    .intro__items .item {
        padding: 14px;
    }
    
    .intro__items .item .item__yellow {
        width: 48px;
        height: 48px;
        padding: 12px;
    }
    
    .intro__items .item .item__text {
        font-size: 13px;
        line-height: 1.4;
    }
}
