/**
 * King Baldwin Product Builder - Product Info Styles
 * Matches King Baldwin design standards
 */

.kbpb-product-info-wrapper {
    padding: 20px 0;
}

/* ===================================
   PRODUCT TITLE
   =================================== */

.kbpb-product-title {
    font-size: 32px;
    font-weight: 700;
    color: #212223;
    line-height: 1.3;
    margin: 0 0 20px 0;
}

/* ===================================
   PRICE
   =================================== */

.kbpb-product-price {
    font-size: 28px;
    font-weight: 700;
    color: #E84B19;
    margin-bottom: 15px;
}

.kbpb-product-price .amount {
    color: #E84B19;
}

.kbpb-product-price del {
    color: #999999;
    font-size: 22px;
    margin-right: 10px;
    opacity: 0.7;
}

.kbpb-product-price ins {
    text-decoration: none;
    color: #E84B19;
}

/* ===================================
   RATING
   =================================== */

.kbpb-rating {
    margin-bottom: 15px;
}

.kbpb-rating .star-rating {
    color: #FFA500;
    font-size: 16px;
}

.kbpb-rating .star-rating::before {
    color: #E5E7EB;
}

/* ===================================
   META (SKU & STOCK)
   =================================== */

.kbpb-product-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666666;
}

.kbpb-sku,
.kbpb-stock {
    display: flex;
    align-items: center;
    gap: 5px;
}

.kbpb-label {
    font-weight: 600;
    color: #212223;
}

.kbpb-value {
    color: #666666;
}

.kbpb-stock .in-stock {
    color: #28a745;
    font-weight: 600;
}

.kbpb-stock .out-of-stock {
    color: #dc3545;
    font-weight: 600;
}

/* ===================================
   SHORT DESCRIPTION
   =================================== */

.kbpb-product-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 20px;
}

.kbpb-product-excerpt p {
    margin-bottom: 15px;
}

.kbpb-product-excerpt p:last-child {
    margin-bottom: 0;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 768px) {
    .kbpb-product-title {
        font-size: 24px;
    }

    .kbpb-product-price {
        font-size: 22px;
    }

    .kbpb-product-meta {
        flex-direction: column;
        gap: 10px;
    }
}
