/* ==========================================
   EDITOR-KIT.CSS
   Styles spécifiques au Kit Katagami
   ========================================== */

/* ==========================================
   ONGLETS POUR 3 ONGLETS (Katagami + Visuel + Peinture)
   ========================================== */

.tabs-header {
    display: flex;
    gap: 10px;  /* Espacement entre les onglets */
}

.tabs-header .tab-wrapper {
    flex: 1;
    min-width: 0;
}

.tabs-header .tab {
    width: 100%;
    font-size: 14px;
    padding: 8px 16px;  /* Même padding que katagami-editor */
    white-space: nowrap;
}

.tabs-header .tab span {
    display: block;
}

/* ============================================
   SÉLECTEUR DE COULEURS (KIT) - 5 PAR LIGNE AVEC ESPACEMENT 24PX
   ============================================ */
.paint-selection-wrapper {
    padding: 20px 0;
}

.product-colors {
    margin-bottom: 32px;
    padding: 20px;
    background: rgba(245, 245, 245, 0.4);
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    border: 1px solid rgba(200, 200, 200, 0.3);
    border-radius: 12px;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.product-colors__label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.product-colors__options {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 360px;
}

.product-color {
    width: 52px;  /* ← ON GARDE 52px (pas 36px comme le site) */
    height: 52px;  /* ← ON GARDE 52px */
    border-radius: 50%;
    border: 2px solid transparent;  /* ← Comme le site */
    cursor: pointer;
    transition: all 0.3s ease;  /* ← Comme le site */
    position: relative;
    padding: 0;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);  /* ← Comme le site */
}

.product-color:hover {
    transform: scale(1.1);  /* ← Comme le site */
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.4);  /* ← Comme le site */
}

.product-color.active::after {  /* ← Comme le site */
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid rgba(0, 0, 0, 0.6);
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 768px) {
    .dpi-comparison {
        flex-direction: column;
        gap: 15px;
    }
    
    .dpi-comparison-item {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .product-colors__options {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        max-width: 300px;
    }
    
    .product-color {
        width: 48px;
        height: 48px;
    }
}