.products-hero {
    position: relative;
    background: #ff9100;
    overflow: hidden;
}

.products-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: .12;
    mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 68%);
    pointer-events: none;
}

.products-hero .container {
    position: relative;
    z-index: 1;
}

.products-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    padding: .35rem .85rem;
    background: rgba(255, 255, 255, .08);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #fff;
}

.products-kicker::before {
    content: "";
    width: .5rem;
    height: .5rem;
    border-radius: 999px;
    background: #f26522;
    box-shadow: 0 0 0 5px rgba(242, 101, 34, .22);
}

.products-section-title {
    max-width: 720px;
    margin: 0 auto;
}

.products-list-section {
    padding-top: 1rem;
}

.products-alt-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.product-alt-item {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .03);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .2);
    overflow: hidden;
    padding: 1.25rem;
}

[data-bs-theme="light"] .product-alt-item {
    border-color: rgba(2, 6, 23, .12);
    background: #fff;
}

.product-alt-row {
    margin: 0;
}

.product-alt-media {
    border-radius: .9rem;
    overflow: hidden;
    background: rgba(255, 255, 255, .05);
    aspect-ratio: 16/10;
}

.product-alt-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.product-alt-item:hover .product-alt-media img {
    transform: scale(1.02);
}

.product-alt-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: .25rem;
}

.product-title-link {
    color: inherit;
    text-decoration: none;
}

.product-title-link:hover {
    color: #f26522;
}

.product-desc {
    color: #9ca3af;
    line-height: 1.65;
}

[data-bs-theme="light"] .product-desc {
    color: #6b7280;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.product-features li {
    position: relative;
    padding-left: 1.25rem;
    color: #d1d5db;
    line-height: 1.55;
}

.product-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .5rem;
    width: .5rem;
    height: .5rem;
    border-radius: 999px;
    background: #ff9100;
    box-shadow: 0 0 0 4px rgba(255, 145, 0, .2);
}

[data-bs-theme="light"] .product-features li {
    color: #4b5563;
}

.product-actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

.product-actions .btn {
    border-radius: 999px;
}

@media (min-width: 992px) {
    .product-alt-item {
        padding: 1.5rem;
    }

    .product-alt-item.is-reverse .product-alt-row {
        flex-direction: row-reverse;
    }

    .product-alt-content-col {
        padding-inline: 1.5rem;
    }
}

@media (max-width: 991.98px) {
    .products-alt-list {
        gap: 1.25rem;
    }

    .product-alt-item {
        padding: 1rem;
    }

    .product-alt-content-col {
        order: 2;
    }

    .product-alt-media-col {
        order: 1;
    }
}
