/* Cards CSS - More card variations with hardcoded values */

.product-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.product-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-card-title {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-card-description {
    font-size: 14px ;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-card-price {
    font-size: 24px;
    color: #3b82f6;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-card-button {
    width: 100%;
    background-color: #3b82f6;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product-card-button:hover {
    background-color: #2563eb;
}

/* Blog card - different styling but same hardcoded values */
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: scale(1.02);
}

.blog-card-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.blog-card-content {
    padding: 20px;
}

.blog-card-date {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 8px;
}

.blog-card-title {
    font-size: 18px;
    color: #1e293b;
    margin-bottom: 12px;
    font-weight: 600;
}

.blog-card-excerpt {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-card-link {
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.blog-card-link:hover {
    text-decoration: underline;
}

/* Profile card */
.profile-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0 auto 20px;
}

.profile-name {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 8px;
    font-weight: 600;
}

.profile-role {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
}

.profile-stats {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

.profile-stat {
    text-align: center;
}

.profile-stat-value {
    font-size: 24px;
    color: #3b82f6;
    font-weight: 700;
}

.profile-stat-label {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 4px;
}

/* Pricing card */
.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #dbeafe 0%, #f0f9ff 100%);
}

.pricing-plan-name {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 600;
}

.pricing-amount {
    font-size: 48px;
    color: #3b82f6;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-period {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 14px;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-button {
    width: 100%;
    background-color: #3b82f6;
    color: white;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.pricing-button:hover {
    background-color: #2563eb;
}
