/**
 * Single Product - Meta Styles
 * استایل اختصاصی بخش meta
 *
 * @package Alotoshak
 * @version 1.0.0
 */

/* ============================================
 * 1. کارت meta
 * ============================================ */
.alotoshak-product-meta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ============================================
 * 2. SKU
 * ============================================ */
.alotoshak-product-meta .sku_wrapper {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: var(--alo-light-gray);
    border-radius: 6px;
    border-right: 3px solid var(--alo-primary);
}

.alotoshak-product-meta .sku_wrapper .sku {
    color: var(--alo-dark);
    font-weight: 700;
    font-family: monospace;
}

/* ============================================
 * 3. امتیاز
 * ============================================ */
.alotoshak-product-rating {
    padding: 8px 0;
}

.alotoshak-product-rating .star-rating,
.alotoshak-product-rating .kk-star-ratings {
    display: inline-block;
}

/* ============================================
 * 4. کالیته
 * ============================================ */
.alotoshak-kalite-box {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.alotoshak-kalite-box .kalite-en {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--alo-primary), var(--alo-primary-dark));
    color: #ffffff !important;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: var(--alo-transition);
    cursor: pointer;
}

.alotoshak-kalite-box .kalite-en:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

/* ============================================
 * 5. واکنش‌گرا
 * ============================================ */
@media (max-width: 480px) {
    .alotoshak-kalite-box {
        flex-direction: column;
    }

    .alotoshak-kalite-box .kalite-en {
        text-align: center;
    }
}