.section-product-showcase {
    background-color: transparent !important;
    padding: 0 0 5rem 0 !important;
    margin: 0 !important;
}
.section-product-showcase .product-item {
    display: flex !important;
    align-items: center !important;
    gap: 4rem !important;
    padding: 0 !important;
    margin: 0 auto 4rem !important; 
    max-width: 900px !important; 
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}
.section-product-showcase .product-item:last-child {
    margin-bottom: 0 !important;
}
.section-product-showcase .product-item.reverse {
    flex-direction: row-reverse !important;
}
.section-product-showcase .product-text {
    flex: 1 !important;
    padding: 2rem 0 !important; 
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    text-align: left !important;
}
.section-product-showcase .product-item.reverse .product-text {
    text-align: left !important;
}
.section-product-showcase .product-eyebrow {
    font-size: 0.8125rem !important;
    font-weight: 700 !important;
    color: var(--blue-600) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 0.75rem !important;
}
.section-product-showcase .product-title {
    font-family: var(--font-display) !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
}
.section-product-showcase .product-desc {
    font-size: 1.05rem !important;
    color: #475569 !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
}
.section-product-showcase .product-feature {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.25rem !important;
    margin-bottom: 1.5rem !important;
    padding-left: 1rem !important;
    border-left: 2px solid var(--blue-600) !important;
}
.section-product-showcase .product-feature strong {
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: #1e293b !important;
}
.section-product-showcase .product-feature span {
    font-size: 0.95rem !important;
    color: #64748b !important;
}
.section-product-showcase .product-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 48px !important;
    padding: 0 32px !important;
    font-size: 12px !important;
    line-height: 16px !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em !important;
    color: #ffffff !important;
    background-color: var(--blue-600) !important;
    border-radius: 9999px !important; 
    text-decoration: none !important;
    transition: background-color 0.2s ease, transform 0.2s ease !important;
    align-self: flex-start !important;
    min-width: fit-content !important;
    white-space: nowrap !important;
}
.section-product-showcase .product-button:hover {
    background-color: var(--blue-700) !important;
    transform: translateY(-2px) !important;
}
.section-product-showcase .product-image {
    flex: 0 0 500px !important; 
    width: 500px !important;
    height: 300px !important; 
    position: relative !important;
    border-radius: 0 !important; 
    background-color: transparent !important;
    overflow: hidden !important;
}
.section-product-showcase .product-image img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.5s ease !important;
}
.section-product-showcase .product-item:hover .product-image img {
    transform: scale(1.05) !important;
}
@media (max-width: 1024px) {
    .section-product-showcase .product-item {
        max-width: 800px !important;
        gap: 2rem !important;
        margin: 0 2rem 4rem !important;
    }
}
@media (max-width: 768px) {
    .section-product-showcase .product-item,
    .section-product-showcase .product-item.reverse {
        flex-direction: column !important;
        margin: 0 1rem 3rem !important;
    }
    .section-product-showcase .product-text {
        padding: 1.5rem 0 !important;
    }
    .section-product-showcase .product-image {
        width: 100% !important;
        min-height: 240px !important;
    }
}
