/**
 * SC Flower Manager - Public Styles
 */

/* Product Grid */
.scfm-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

/* Product Card */
.scfm-product-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.scfm-product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.scfm-product-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.scfm-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scfm-product-content {
    padding: 15px;
}

.scfm-product-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px;
    line-height: 1.3;
}

.scfm-product-name a {
    color: inherit;
    text-decoration: none;
}

.scfm-product-name a:hover {
    color: #0073aa;
}

.scfm-product-price {
    font-size: 18px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 10px;
}

.scfm-product-price-old {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: normal;
}

.scfm-product-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.scfm-product-button {
    display: inline-block;
    background: #27ae60;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.scfm-product-button:hover {
    background: #219a52;
    color: #fff;
}

/* Partner Badge */
.scfm-partner-badge {
    display: inline-block;
    background: #f5f5f5;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}
