/* =========================================================================
   GIFT CARD THEME SELECTOR - PRODUCT PAGE
========================================================================= */

.wc_gc_theme_selector {
    margin: 15px 0;
}

.wc_gc_theme_selector > label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}

.pw-gc-frontend-themes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pw-gc-theme-option {
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 4px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pw-gc-theme-option:hover {
    border-color: #ccc;
}

.pw-gc-theme-option.selected {
    border-color: #86683A;
    box-shadow: 0 0 0 1px #86683A;
}

.pw-gc-theme-thumb {
    width: 100%;
    height: 0;
    padding-bottom: 56%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f5f5;
    border-radius: 6px;
    overflow: hidden;
}

.pw-gc-theme-label {
    display: block;
    font-size: 13px;
    margin-top: 6px;
    color: #444;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .pw-gc-theme-thumb {
        padding-bottom: 60%;
    }
    .pw-gc-theme-label {
        font-size: 12px;
    }
}
