.fgc-box {
    margin: 24px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
}

.fgc-box h3 {
    margin-top: 0;
}

.fgc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 14px;
}

.fgc-card-option {
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 10px;
    cursor: pointer;
    text-align: center;
    display: block;
    transition: 0.2s ease;
}

.fgc-card-option input {
    display: none;
}

.fgc-card-option img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 8px;
}

.fgc-card-option strong {
    display: block;
    font-size: 14px;
}

.fgc-price {
    display: block;
    font-size: 13px;
    margin-top: 4px;
}

.fgc-card-option:has(input:checked) {
    border-color: #111;
    background: #f7f7f7;
}

.fgc-no-card-image {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f2f2;
    border-radius: 8px;
    margin-bottom: 8px;
}

.fgc-text-wrap {
    margin-top: 18px;
}

.fgc-text-wrap textarea {
    width: 100%;
    margin-top: 8px;
}
}