/*Masque champ Personnalisation*/
/*#field-textField2 {
  display: none !important;
}*/
.product-customization{
   display: none !important;
}

/* Container des pastilles */
.parasol-toile-swatches {
    list-style: none;
    margin: 10px 0 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Masquer les radios */
.parasol-toile-swatch input[type="radio"] {
    display: none;
}

/* Pastille couleur glossy */
.parasol-toile-swatch .swatch-circle {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    display: inline-block;

    /* Ombre externe */
    box-shadow:
        0 4px 8px rgba(0,0,0,0.25),
        inset 0 2px 4px rgba(255,255,255,0.5),
        inset 0 -2px 6px rgba(0,0,0,0.2);

    /* Transition dynamique */
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Reflet glossy */
.parasol-toile-swatch .swatch-circle::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255,255,255,0.9),
        rgba(255,255,255,0.0)
    );
    opacity: 0.7;
    pointer-events: none;
}

/* Effet lumineux supplémentaire */
.parasol-toile-swatch .swatch-circle::after {
    content: "";
    position: absolute;
    bottom: 3px;
    right: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255,255,255,0.5),
        rgba(255,255,255,0)
    );
    opacity: 0.6;
    pointer-events: none;
}

/* Zoom au survol */
.parasol-toile-swatch .swatch-circle:hover {
    transform: scale(1.18);
    box-shadow:
        0 6px 12px rgba(0,0,0,0.35),
        inset 0 3px 6px rgba(255,255,255,0.6),
        inset 0 -3px 8px rgba(0,0,0,0.25);
}

/* Style sélectionné */
.parasol-toile-swatch input[type="radio"]:checked + .swatch-circle {
    transform: scale(1.25);
    box-shadow:
        0 0 0 3px rgba(0,0,0,0.8),
        0 6px 14px rgba(0,0,0,0.4),
        inset 0 3px 8px rgba(255,255,255,0.65),
        inset 0 -4px 10px rgba(0,0,0,0.3);
}
