/* シコ図鑑アフィツール フロント CSS */

.sat-widget {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    margin: 30px 0;
}

.sat-widget.sat-empty {
    padding: 20px;
    background: #f5f5f7;
    text-align: center;
    color: #888;
    font-size: 13px;
}

.sat-heading {
    font-size: 18px;
    color: #1a1f3a;
    margin: 0 0 20px;
    border: none;
    padding: 0 0 10px;
    border-bottom: 3px solid #c9302c;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sat-heading .sat-icon { font-size: 24px; }
.sat-heading .sat-title { flex: 1; }
.sat-heading .sat-tag {
    font-size: 11px;
    background: #c9302c;
    color: #fff;
    padding: 3px 10px;
    border-radius: 3px;
    letter-spacing: 0.05em;
}

.sat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
}

.sat-card {
    display: block;
    text-decoration: none;
    color: #2c2c2c;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e0e0e0;
}
.sat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.10);
    color: #2c2c2c;
}

.sat-card-img {
    position: relative;
    padding-top: 140%;
    background: #000;
    overflow: hidden;
}
.sat-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sat-discount {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #c9302c;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 3px;
}

.sat-card-body {
    padding: 8px 10px;
}
.sat-card-title {
    font-size: 11px;
    line-height: 1.4;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 30px;
    margin-bottom: 6px;
}
.sat-card-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.sat-list-price {
    font-size: 10px;
    color: #999;
    text-decoration: line-through;
}
.sat-current-price {
    font-size: 14px;
    font-weight: 800;
    color: #c9302c;
}

.sat-disclaimer {
    font-size: 11px;
    color: #888;
    text-align: right;
    margin: 14px 0 0;
}

@media (max-width: 480px) {
    .sat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
