.purycot-swatch-row { margin: 12px 0 16px; }
.purycot-swatch-label { font-weight: 600; margin-bottom: 6px; }
.purycot-swatches { display: flex; flex-wrap: wrap; gap: 10px; }

/* image swatch (color) — 10% bigger */
.purycot-swatch {
  border: 1px solid #ddd;
  background: #fff;
  padding: 3px;
  width: 58px; height: 58px;     /* bigger */
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .08s ease, border-color .08s ease, opacity .08s ease;
}
.purycot-swatch img { max-width: 100%; max-height: 100%; display: block; }
.purycot-swatch:hover { transform: translateY(-1px); box-shadow: 0 2px 10px rgba(0,0,0,.08); }
.purycot-swatch.is-selected { border-color: #111; box-shadow: 0 0 0 2px #111 inset; }

/* size swatches (text chips) */
.purycot-swatches--size .purycot-swatch--size {
  width: auto; height: auto;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}
.purycot-swatch-text { font-size: 13px; line-height: 1; }

.purycot-swatch.is-disabled {
  cursor: not-allowed;
  opacity: 0.45;
  filter: grayscale(30%);
  box-shadow: none;
}
.purycot-swatch-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;            /* name aur image ke beech thoda space */
}

.purycot-swatch-name {
  font-size: 12px;
  line-height: 1;
  font-weight: 600;    /* optional: thoda readable */
  text-transform: none;
}
/* FORCE bigger color thumbnail */
.purycot-swatch-row .purycot-swatches .purycot-swatch {
  width: 70px !important;      /* ~10–20% bigger; change to 64px if you prefer */
  height: 70px !important;
  min-width: 70px !important;
  min-height: 70px !important;
}

/* ensure the image actually fills the bigger button */
.purycot-swatch-row .purycot-swatches .purycot-swatch img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;           /* image ko crop/fit karne ke liye */
  display: block !important;
}
