.gd-product-options {
    min-width: 0;
    max-height: 300px;
    overflow: auto;
    padding: 16px;
    border: 1px solid var(--gd-border);
    border-radius: var(--gd-radius-sm);
}

.gd-product-options .check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}

.gd-product-options input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.gd-product-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 16px 0;
}

.gd-product-gallery > div {
    max-width: 220px;
}

.gd-product-gallery img {
    max-width: 100%;
    object-fit: contain;
    border: 1px solid var(--gd-border);
    border-radius: var(--gd-radius-sm);
    background: var(--gd-surface);
}

.gd-product-description {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.gd-product-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gd-secondary);
}

.gd-product-price del {
    margin-left: 8px;
    font-size: 1rem;
    font-weight: 400;
}

.gd-product-public {
    width: min(100% - 32px, 1100px);
    margin: 24px auto !important;
    padding: 0 !important;
}