/**
 * Copyright © PrestaShop SA
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

.custom-attributes-group {
  margin-bottom: 1.5rem;
}

.custom-attributes-group h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.custom-attributes-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.custom-attribute-btn {
  min-width: 80px;
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  background-color: #fff;
  color: #333;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-attribute-btn:hover {
  background-color: #f8f8f8;
  border-color: #ccc;
}

.custom-attribute-btn.active {
  background-color: #232323;
  color: #fff;
  border-color: #232323;
}

.custom-attributes-radio {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.custom-attribute-radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.custom-attribute-radio input[type="radio"] {
  margin: 0;
}

.custom-attribute-radio label {
  cursor: pointer;
}

.custom-attributes-select select {
  width: 100%;
  max-width: 300px;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .custom-attribute-btn {
    min-width: 60px;
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
} 