/* Product Showcase Card - fc6dd461 */

.psc-fc6dd461-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.psc-fc6dd461-card:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.psc-fc6dd461-image-wrap {
    flex: 0 0 45%;
    max-width: 45%;
    background-color: #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 320px;
    position: relative;
}

.psc-fc6dd461-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.psc-fc6dd461-card:hover .psc-fc6dd461-image {
    transform: scale(1.05);
}

.psc-fc6dd461-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 44px;
    gap: 6px;
}

.psc-fc6dd461-badge {
    display: inline-block;
    width: fit-content;
    background-color: #6366f1;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 6px;
}

.psc-fc6dd461-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.psc-fc6dd461-price {
    font-size: 24px;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 8px;
}

.psc-fc6dd461-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin: 0 0 16px 0;
}

.psc-fc6dd461-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.psc-fc6dd461-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.psc-fc6dd461-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: #ecfdf5;
    border-radius: 50%;
    color: #22c55e;
    flex-shrink: 0;
    padding: 3px;
}

.psc-fc6dd461-feature-icon svg {
    fill: #22c55e;
}

.psc-fc6dd461-feature span {
    font-size: 14px;
    color: #475569;
    font-weight: 500;
}

.psc-fc6dd461-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    background-color: #6366f1;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
}

.psc-fc6dd461-btn:hover {
    background-color: #4f46e5;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.psc-fc6dd461-btn .psc-fc6dd461-btn-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.psc-fc6dd461-btn:hover .psc-fc6dd461-btn-icon {
    transform: translateX(4px);
}

.psc-fc6dd461-btn svg {
    width: 14px;
    height: 14px;
    fill: #ffffff;
    transition: transform 0.3s ease;
}

.psc-fc6dd461-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .psc-fc6dd461-card {
        flex-direction: column;
    }

    .psc-fc6dd461-image-wrap {
        flex: none;
        max-width: 100%;
        min-height: 260px;
    }

    .psc-fc6dd461-content {
        padding: 28px 24px;
    }

    .psc-fc6dd461-title {
        font-size: 22px;
    }

    .psc-fc6dd461-price {
        font-size: 20px;
    }

    .psc-fc6dd461-btn {
        width: 100%;
    }
}
