.prod-430-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid #eaeaea;
}

.prod-430-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.prod-430-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prod-430-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f59e0b;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

.prod-430-content {
    padding: 24px;
}

.prod-430-category {
    display: inline-block;
    border: 1px solid #e2e8f0;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 14px;
    color: #1e293b;
    margin-bottom: 16px;
}

.prod-430-title {
    font-size: 22px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.prod-430-desc {
    font-size: 15px;
    color: #64748b;
    margin: 0 0 24px 0;
    line-height: 1.5;
}

.prod-430-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.prod-430-price {
    font-size: 28px;
    font-weight: 600;
    color: #10b981;
}

.prod-430-btn {
    background: #10b981;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prod-430-btn:hover {
    background: #059669;
}

/* Modal Styles */
.prod-430-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.prod-430-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.prod-430-modal {
    background: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    padding: 32px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.prod-430-modal-overlay.active .prod-430-modal {
    transform: translateY(0);
}

.prod-430-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    padding: 4px;
}

.prod-430-modal-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #0f172a;
}

.prod-430-modal-section {
    margin-bottom: 20px;
    background: #f8fafc;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.prod-430-modal-label {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.prod-430-modal-value {
    font-size: 16px;
    color: #0f172a;
    font-weight: 500;
    word-break: break-all;
}

.prod-430-modal-instructions {
    margin-top: 24px;
    font-size: 15px;
    color: #334155;
    line-height: 1.6;
}
