/* Product Schema Markup Frontend Styles */

.psm-product-info {
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 20px 0;
    font-family: inherit;
}

.psm-product-name {
    color: #333;
    font-size: 1.5em;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.psm-product-description {
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.psm-product-price {
    margin: 15px 0;
}

.psm-price {
    font-size: 1.25em;
    font-weight: bold;
    color: #2c5530;
    background: #e8f5e8;
    padding: 8px 12px;
    border-radius: 4px;
    display: inline-block;
}

.psm-product-brand,
.psm-product-sku,
.psm-product-availability {
    margin: 8px 0;
    color: #555;
    font-size: 0.9em;
}

.psm-product-image {
    margin: 15px 0;
    text-align: center;
}

.psm-product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Rating Display Styles */
.psm-rating-display {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.psm-stars {
    display: flex;
    gap: 2px;
}

.psm-star {
    font-size: 1.2em;
    line-height: 1;
}

.psm-star-full {
    color: #ffc107;
}

.psm-star-half {
    color: #ffc107;
}

.psm-star-empty {
    color: #ddd;
}

.psm-rating-info {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9em;
}

.psm-rating-value {
    font-weight: bold;
    color: #333;
}

.psm-rating-count {
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .psm-product-info {
        padding: 15px;
        margin: 15px 0;
    }
    
    .psm-product-name {
        font-size: 1.3em;
    }
    
    .psm-price {
        font-size: 1.1em;
        padding: 6px 10px;
    }
    
    .psm-rating-display {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* Dark Theme Support */
@media (prefers-color-scheme: dark) {
    .psm-product-info {
        background: #2a2a2a;
        border-color: #444;
        color: #e0e0e0;
    }
    
    .psm-product-name {
        color: #fff;
    }
    
    .psm-product-description {
        color: #ccc;
    }
    
    .psm-price {
        background: #1a4d1f;
        color: #90ee90;
    }
    
    .psm-product-brand,
    .psm-product-sku,
    .psm-product-availability {
        color: #bbb;
    }
    
    .psm-rating-value {
        color: #fff;
    }
    
    .psm-rating-count {
        color: #aaa;
    }
}

/* Widget Styles */
.psm-widget-content {
    font-size: 14px;
    line-height: 1.5;
}

.psm-widget-name {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
}

.psm-widget-price {
    font-size: 18px;
    font-weight: bold;
    color: #2c5530;
    margin-bottom: 8px;
}

.psm-widget-rating {
    margin-bottom: 8px;
}

.psm-widget-rating .psm-rating-display {
    margin: 0;
}

.psm-widget-description {
    color: #666;
    margin-bottom: 8px;
    font-size: 13px;
}

.psm-widget-brand,
.psm-widget-availability {
    color: #666;
    font-size: 12px;
    margin-bottom: 4px;
}

/* Widget dark theme */
@media (prefers-color-scheme: dark) {
    .psm-widget-name {
        color: #fff;
    }
    
    .psm-widget-price {
        color: #90ee90;
    }
    
    .psm-widget-description,
    .psm-widget-brand,
    .psm-widget-availability {
        color: #ccc;
    }
}
