/* Premium Styles for Jewelry/Clothing Customizer */
.cc-custom-options {
    margin: 20px 0;
    padding: 20px;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-family: inherit;
}

.cc-field-group {
    margin-bottom: 20px;
}

.cc-field-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cc-radio-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cc-radio-item {
    flex: 1;
    min-width: 100px;
}

.cc-radio-item input[type="radio"] {
    display: none;
}

.cc-radio-item label {
    display: block;
    padding: 12px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.cc-radio-item input[type="radio"]:checked + label {
    border-color: #000;
    background: #000;
    color: #fff;
}

.cc-conditional-fields {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
    display: none; /* Hidden by default */
}

.cc-sub-group {
    margin-bottom: 15px;
}

.cc-input-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.cc-measurements {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cc-measure-input {
    width: 80px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.cc-price-preview {
    margin-top: 20px;
    padding: 15px;
    background: #f0f9ff;
    border-radius: 8px;
    border-left: 4px solid #007cba;
}

.cc-price-preview span {
    font-weight: bold;
    color: #007cba;
}

.cc-upload-wrapper {
    display: block;
    padding: 15px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s;
}

.cc-upload-wrapper:hover {
    background: #f9f9f9;
}

#cc_logo_file {
    margin-top: 10px;
}

.cc-limit-notice {
    font-size: 11px;
    color: #888;
    margin-top: 4px;
}
