.prod-card-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    border: 1px solid #e2e8f0;
    padding: 32px;
    border-radius: 16px;
    background-color: #fff;
    max-width: 540px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    color: #334155;
    margin: 0 auto;
}

/* Badges */
.prod-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.prod-card-badge {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
}
.badge-icon {
    width: 12px;
    height: 12px;
    margin-right: 4px;
}

/* Title */
.prod-card-title {
    font-size: 28px;
    font-weight: 750;
    color: #0c2340;
    margin: 0 0 16px 0;
    line-height: 1.25;
}

/* Description */
.prod-card-desc {
    font-size: 14.5px;
    line-height: 1.6;
    color: #64748b;
    margin: 0 0 20px 0;
}

/* Author Info */
.prod-card-author {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.prod-card-author-img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-right: 8px;
    object-fit: cover;
    background-color: #e2e8f0;
}
.prod-card-author-name {
    font-size: 14px;
    color: #64748b;
}

/* Ratings */
.prod-card-ratings {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}
.prod-card-stars {
    color: #f59e0b;
    font-size: 18px;
    display: flex;
    gap: 1px;
}
.prod-card-rating-text {
    font-size: 14px;
    color: #0c2340;
}
.prod-card-rating-text strong {
    font-size: 15px;
}
.prod-card-rating-text .review-count {
    color: #64748b;
    margin-left: 2px;
}

/* Price */
.prod-card-price {
    font-size: 38px;
    font-weight: 800;
    color: #0c2340;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

/* Reward Points */
.prod-card-rewards {
    display: flex;
    align-items: center;
    color: #0284c7;
    font-size: 13.5px;
    margin-bottom: 28px;
}
.rewards-gift-icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    flex-shrink: 0;
}
.prod-card-rewards strong {
    font-weight: 700;
}

/* Buttons */
.prod-card-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
.prod-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}
.btn-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

/* Add to Cart */
.btn-cart {
    background-color: #0ea5e9;
    color: #fff;
}
.btn-cart:hover {
    background-color: #0284c7;
}

/* Buy Now */
.btn-buy {
    background-color: #f59e0b;
    color: #fff;
}
.btn-buy:hover {
    background-color: #d97706;
}

/* Wishlist */
.btn-wish {
    background-color: #f8fafc;
    color: #0f172a;
    border: 1px solid #e2e8f0;
}
.btn-wish:hover {
    background-color: #f1f5f9;
}

/* Footer Subtext */
.prod-card-footer {
    font-size: 12.5px;
    color: #64748b;
    text-align: center;
}
