/** Shopify CDN: Minification failed

Line 210:4 Unexpected "/"

**/
/* 

.grill-configurator {
  width: 100%;
  min-width: 0;
  margin-top: 16px;
}

/* Keep each block full width and clean */
.grill-configurator .product-form__input,
.grill-configurator fieldset.product-form__input {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 0 16px 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

/* Labels / legends */
.grill-configurator .form__label,
.grill-configurator legend.form__label {
  display: block !important;
  margin: 0 0 10px 0 !important;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* =========================================================
   TEETH GRIDS (Upper / Lower)
   ========================================================= */
.grill-configurator .grill-tooth-grid {
  display: grid !important;
  justify-content: start !important;
  gap: 8px !important;

  /* Desktop default */
  grid-template-columns: repeat(8, 44px) !important;
}

@media (max-width: 1199px) {
  .grill-configurator .grill-tooth-grid {
    grid-template-columns: repeat(6, 44px) !important;
  }
}

@media (max-width: 749px) {
  .grill-configurator .grill-tooth-grid {
    grid-template-columns: repeat(4, 48px) !important;
    gap: 10px !important;
  }
}

.grill-configurator .grill-tooth-pill {
  width: 44px;
  height: 44px;
  padding: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(var(--color-foreground), 0.25);
  background: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
  border-radius: 2px;

  font: inherit;
  font-size: 13px;
  line-height: 1;

  cursor: pointer;
  user-select: none;
  box-sizing: border-box;
}

@media (max-width: 749px) {
  .grill-configurator .grill-tooth-pill {
    width: 48px;
    height: 48px;
    font-size: 14px;
  }
}

.grill-configurator .grill-tooth-pill:hover {
  border-color: rgba(var(--color-foreground), 0.5);
}

.grill-configurator .grill-tooth-pill:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(var(--color-foreground), 0.25);
}

.grill-configurator .grill-tooth-pill[aria-pressed="true"] {
  border-color: rgb(var(--color-foreground));
  box-shadow: inset 0 0 0 1px rgb(var(--color-foreground));
}

/* =========================================================
   KARAT + COLOR (THIS fixes your “vertical on large screens”)
   Markup: <div class="grill-pill-row"> input + label pairs
   ========================================================= */

/* Container: ALWAYS a horizontal flex row on desktop */
.grill-configurator .grill-pill-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;

  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;

  gap: 12px !important;

  /* Default (desktop): keep them in a row */
  flex-wrap: nowrap !important;
}

/* Allow wrapping only on smaller screens so it stays responsive */
@media (max-width: 749px) {
  .grill-configurator .grill-pill-row {
    flex-wrap: wrap !important;
    gap: 10px !important;
  }
}

/* Hide radios, keep accessible */
.grill-configurator .grill-pill-row input[type="radio"] {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* HARD override: Dawn sometimes forces labels to be block/100% width.
   This is what causes vertical stacking on large screens. */
.grill-configurator .grill-pill-row label {
  display: inline-flex !important;
  width: auto !important;
  max-width: none !important;
  flex: 0 0 auto !important;

  align-items: center !important;
  justify-content: center !important;

  border: 1px solid rgba(var(--color-foreground), 0.25) !important;
  background: rgb(var(--color-background)) !important;
  color: rgb(var(--color-foreground)) !important;

  border-radius: 2px !important;
  min-height: 44px !important;
  padding: 10px 14px !important;

  margin: 0 !important;
  white-space: nowrap !important;
  box-sizing: border-box !important;
  cursor: pointer !important;

  line-height: 1.1 !important;
}

/* Selected style */
.grill-configurator .grill-pill-row input[type="radio"]:checked + label {
  border-color: rgb(var(--color-foreground)) !important;
  box-shadow: inset 0 0 0 1px rgb(var(--color-foreground)) !important;
}

.grill-configurator .grill-pill-row label:hover {
  border-color: rgba(var(--color-foreground), 0.5) !important;
}

/* Nice sizing: Karat vs Color */
.grill-configurator #grill-karat-10k + label,
.grill-configurator #grill-karat-14k + label,
.grill-configurator #grill-karat-18k + label {
  min-width: 76px !important;
}

.grill-configurator #grill-color-yellow + label,
.grill-configurator #grill-color-white + label,
.grill-configurator #grill-color-rose + label {
  min-width: 130px !important;
}

/* On phones: make color options 2-per-row */
@media (max-width: 749px) {
  .grill-configurator #grill-color-yellow + label,
  .grill-configurator #grill-color-white + label,
  .grill-configurator #grill-color-rose + label {
    flex: 1 1 calc(50% - 10px) !important;
    min-width: 0 !important;
    white-space: normal !important;
    text-align: center !important;
  }
}

/* =========================================================
   NOTES
   ========================================================= */
.grill-configurator textarea,
.grill-configurator textarea.field__input {
  width: 100% !important;
  box-sizing: border-box !important;
  border-radius: 2px !important;
}  */
