/* Screenshot-style Home Banner */
.homepage-style {
    background: #ffffff;
}

.home-banner-section {
    background: #ffffff;
    padding: 28px 0 35px;
}

.home-banner-slider {
    width: 86%;
    max-width: 1320px;
    height: 430px;
    margin: 0 auto;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #f3f4f6;
}

.home-banner-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.home-banner-slide.active {
    display: block;
}

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

.home-banner-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: #4b5563;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-banner-btn.prev {
    left: 18px;
}

.home-banner-btn.next {
    right: 18px;
}

/* Section title */
.home-product-section {
    background: #ffffff;
    padding: 0 0 38px;
    width: 86%;
    max-width: 1320px;
    margin: 0 auto;
}

.section-line-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 8px 0 35px;
}

.section-line-title span {
    height: 1.5px;
    background: #1f9b70;
    flex: 1;
}

.section-line-title h2 {
    color: #1f9b70;
    font-size: 23px;
    font-weight: 400;
    margin: 0;
    white-space: nowrap;
}

/* Product grid */
.home-style-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.home-shop-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 3px 11px rgba(0, 0, 0, 0.13);
    transition: all 0.25s ease;
}

.home-shop-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.home-shop-image {
    width: 100%;
    height: 315px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.home-shop-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
    display: block;
}

.home-shop-info {
    padding: 0 14px 14px;
}

.home-shop-info h3 {
    color: #1f9b70;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.45;
    height: 58px;
    overflow: hidden;
    margin: 0 0 15px;
}

.home-shop-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.home-shop-price {
    color: #ff4b4b;
    font-size: 23px;
    font-weight: 800;
}

.home-shop-actions {
    display: flex;
    align-items: center;
    gap: 7px;
}

.home-shop-actions form {
    margin: 0;
}

.shop-action-btn {
    width: 41px;
    height: 41px;
    border: none;
    border-radius: 6px;
    background: #1f9b70;
    color: #ffffff;
    font-size: 19px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(31, 155, 112, 0.35);
}

.shop-action-btn:hover {
    background: #157f5a;
}

.shop-action-btn.disabled {
    background: #9ca3af;
    cursor: not-allowed;
    box-shadow: none;
}

.view-all-wrap {
    text-align: center;
    margin-top: 26px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: #1f9b70;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 22px;
    font-weight: 700;
}

.view-all-btn:hover {
    background: #157f5a;
}

.stock-badge.out {
    display: inline-block;
    background: #fee2e2;
    color: #991b1b;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

@media (max-width: 1200px) {
    .home-banner-slider,
    .home-product-section {
        width: 92%;
    }

    .home-style-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-shop-image {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .home-banner-slider {
        height: 260px;
    }

    .home-style-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-line-title h2 {
        font-size: 20px;
    }

    .home-shop-image {
        height: 230px;
    }

    .home-shop-info h3 {
        font-size: 16px;
        height: 50px;
    }

    .home-shop-price {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .home-banner-slider {
        width: 94%;
        height: 190px;
    }

    .home-style-product-grid {
        grid-template-columns: 1fr;
    }

    .section-line-title {
        gap: 8px;
    }

    .section-line-title h2 {
        font-size: 17px;
    }

    .home-shop-image {
        height: 255px;
    }

    .view-all-btn {
        font-size: 18px;
    }
}
