html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

header {
    gap: 16px;
}

.category-nav {
    flex-wrap: wrap;
}

.hero {
    min-height: 360px;
    padding: 56px 20px 44px;
}

.home-search {
    display: flex;
    align-items: stretch;
    width: min(720px, 100%);
    margin: 26px auto 18px;
    border: 1px solid #d8dde6;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(20, 24, 31, 0.08);
    overflow: hidden;
}

.home-search-input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    padding: 16px 18px;
    font: inherit;
    font-size: 16px;
    color: #111827;
    background: #fff;
    outline: none;
}

.home-search-input::placeholder {
    color: #737b89;
}

.home-search-button {
    flex: 0 0 auto;
    border: 0;
    padding: 0 28px;
    font: inherit;
    font-weight: 700;
    color: #fff;
    background: #111827;
    cursor: pointer;
    transition: background-color 160ms ease, transform 160ms ease;
}

.home-search-button:hover,
.home-search-button:focus-visible {
    background: #374151;
}

.home-search-button:active {
    transform: translateY(1px);
}

.home-category-products {
    align-items: stretch;
}

.home-category-product-card {
    border: 1px solid #e6e9ef;
    background: #fff;
}

.home-category-product-image {
    aspect-ratio: 1 / 1;
    background: #f4f6f8;
}

.home-category-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-category-product-image.is-fallback {
    display: grid;
    place-items: center;
    color: #6b7280;
    font-size: 13px;
    text-align: center;
    padding: 12px;
}

.home-category-product-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
}

.home-category-view-item {
    text-align: center;
}

.home-category-empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 28px 16px;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    color: #4b5563;
    background: #f8fafc;
    text-align: center;
}

img {
    max-width: 100%;
}

.product-card > img,
.product-image img,
.related-products .product-card img {
    object-fit: cover;
}

.product-card h3,
.product-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pagination a[href="/"] {
    display: inline-flex;
}

@media (max-width: 768px) {
    header {
        align-items: flex-start;
    }

    .category-nav {
        width: 100%;
        justify-content: center;
        row-gap: 8px;
    }

    .hero {
        min-height: 300px;
        padding: 42px 14px 34px;
    }

    .home-search {
        flex-direction: column;
        margin-top: 20px;
    }

    .home-search-input {
        width: 100%;
        padding: 14px 15px;
    }

    .home-search-button {
        width: 100%;
        min-height: 46px;
    }

    .home-category-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .home-category-tab {
        white-space: nowrap;
    }

    .home-category-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (max-width: 420px) {
    .home-category-products {
        grid-template-columns: 1fr;
    }
}
