body.homepage-temp .featured-products-temp {
    margin-bottom: 140px;
}

body.homepage-temp .featured-products {
    padding: 24px 0 0;
    color: #1a1a1a;
}

body.homepage-temp .featured-products .section-header {
    margin-bottom: 32px;
}

body.homepage-temp .featured-products .section-title {
    margin: 0;
    font-size: 42px;
    font-weight: 800;
    line-height: 48px;
}

body.homepage-temp .featured-products .view-more-link,
body.homepage-temp .featured-products .view-more-mobile {
    font-weight: 500;
    line-height: 20px;
    align-items: center;
    color: #111;
    display: flex;
    font-family: CabinetGrotesk, sans-serif;
    font-size: 18px;
    text-decoration: underline;
}

body.homepage-temp .featured-products .view-more-link:hover {
    text-decoration: none;
}

body.homepage-temp .featured-products .category-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 13px;
    margin-bottom: 32px;
}

body.homepage-temp .featured-products .category-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 40px;
    background-color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    cursor: pointer;
}

body.homepage-temp .featured-products .category-btn:hover {
    background-color: #f0f0f0;
    border-color: #d0d0d0;
    text-decoration: none;
    color: #1a1a1a;
}

body.homepage-temp .featured-products .category-btn::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 4px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M0.452056 4.71423H8.97641' stroke='%23B0B0B0' stroke-width='0.904144' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.71423 0.452057L8.97641 4.71423L4.71423 8.97641' stroke='%23B0B0B0' stroke-width='0.904144' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

body.homepage-temp .featured-products .products-grid > div > a {
    text-decoration: none;
    color: inherit;
}

body.homepage-temp .featured-products .product-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

body.homepage-temp .featured-products .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

body.homepage-temp .featured-products .product-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #fafafa;
}

body.homepage-temp .featured-products .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

body.homepage-temp .featured-products .product-card:hover .product-image img {
    transform: scale(1.05);
}

body.homepage-temp .featured-products .product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

body.homepage-temp .featured-products .product-brand {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #3d3d3d;
}

body.homepage-temp .featured-products .product-title {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    line-height: 28px;
    color: #1a1a1a;
}

body.homepage-temp .featured-products .product-price {
    margin-top: auto;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #1a1a1a;
}

body.homepage-temp .featured-products .view-more-mobile {
    display: block;
    margin-top: 32px;
    text-align: center;
    padding: 12px 24px;
    border: 1px solid #1a1a1a;
    border-radius: 100px;
}

@media (max-width: 991px) {
    body.homepage-temp .featured-products .section-title {
        font-size: 34px;
        line-height: 40px;
    }
}

@media (max-width: 767px) {
    body.homepage-temp .featured-products-temp {
        margin-bottom: 40px;
    }
    body.homepage-temp .featured-products .section-header {
        margin-bottom: 24px;
    }

    body.homepage-temp .featured-products .section-title {
        font-size: 32px;
        line-height: 36px;
    }

    body.homepage-temp .featured-products .category-buttons {
        gap: 8px;
        margin-bottom: 24px;
    }

    body.homepage-temp .featured-products .category-btn {
        font-size: 14px;
        line-height: 18px;
        padding: 6px 12px;
    }

    body.homepage-temp .featured-products .product-content {
        padding-top: 12px;
    }

    body.homepage-temp .featured-products .product-title {
        font-size: 16px;
        line-height: 22px;
    }

    body.homepage-temp .featured-products .product-price {
        font-size: 16px;
        line-height: 20px;
    }
}
