.spd-product {
  --spd-bg: #fffdf5;
  --spd-ink: #202223;
  width: 100%;
  
  box-sizing: border-box;
  background: var(--spd-bg);
  color: var(--spd-ink);
}

.spd-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;

  box-sizing: border-box;
}

.spd-share {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  margin: 0 0 27px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #202223;
  color: #fff;
  cursor: pointer;
  transition: background-color .2s ease;
}

.spd-share:hover,
.spd-share:focus-visible { background: #4c4e4e; }

.spd-share img {
  display: block;
  width: 14px;
  height: 14px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.spd-title {
  margin: 0 0 7px !important;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(31px, 3.2vw, 48px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.04em;
  color: #111;
}

.spd-price { font-size: 18px; font-weight: 600; line-height: 1.2; }
.spd-price del { opacity: .45; }
.spd-price ins { text-decoration: none; }
.spd-delivery { margin-top: 5px; font-size: 14px; color: #a1a1a1; }
.spd-options { margin-top: 14px; }
.spd-option-label { margin-bottom: 10px; font-size: 13px; font-weight: 500; }
.spd-option-items { display: flex; }
.spd-color-group .spd-option-items { align-items: flex-start; gap: 13px; min-height: 42px; }
.spd-choice { position: relative; cursor: pointer; }
.spd-choice input { position: absolute; opacity: 0; pointer-events: none; }

.spd-color {
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--spd-bg);
  border-radius: 50%;
  outline: 1px solid transparent;
  background: var(--spd-swatch);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .06);
  transition: .18s;
}

.spd-choice.is-selected .spd-color { outline-color: var(--spd-swatch); }

.spd-color-name {
  display: none;
  position: absolute;
  top: 27px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8px;
  line-height: 1;
  text-transform: uppercase;
  color: #9a9a9a;
  white-space: nowrap;
}

.spd-choice.is-selected .spd-color-name { display: block; }

.spd-radio-group {
  margin-top: 16px !important;
  padding: 12px 10px !important;
  border: 1px solid #343536 !important;
  box-sizing: border-box;
}

.spd-radio-group .spd-option-label { display: none; }
.spd-radio-group .spd-option-items {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 6px !important;
}
h1.spd-title{
  font-size: 40px !important;
}
.spd-radio-group .spd-choice {
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  min-height: 16px;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 16px !important;
  color: #202223 !important;
}

.spd-radio-group .spd-choice > span:last-child {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
  font: inherit !important;
  color: inherit !important;
}

.spd-radio-icon {
  display: block !important;
  flex: 0 0 14px;
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  clip-path: none !important;
}

.spd-radio-icon svg { display: block; width: 14px; height: 14px; overflow: visible; }
.spd-radio-shape { fill: #fffdf5; stroke: #343536; stroke-width: 1; }
.spd-radio-dot { fill: transparent; }
.spd-choice.is-selected .spd-radio-dot { fill: #202223; }
.spd-native-select { display: none; }
.spd-cart-form { margin: 0 !important; }
.spd-cart-form .single_variation_wrap { margin-top: 16px; }
.spd-cart-form .single_variation_wrap .spd-add-to-cart { margin-top: 0 !important; }
.spd-cart-form .woocommerce-variation { display: none !important; }

.spd-add-to-cart,
.spd-inquiry {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  height: 46px !important;
  box-sizing: border-box;
  border-radius: 2px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  transition: background .2s, color .2s, border-color .2s;
}

.spd-add-to-cart {
  margin: 16px 0 0 !important;
  border: 1px solid #242627 !important;
  background: #242627 !important;
  color: #fff !important;
}

.spd-add-to-cart:hover { background: #000 !important; }
.spd-add-to-cart.disabled { opacity: .45; cursor: not-allowed; }
.spd-add-to-cart.is-unavailable { opacity: 1; background: #242627 !important; }

.spd-inquiry {
  margin-top: 9px;
  border: 1px solid #242627;
  background: transparent;
  color: #202223 !important;
}

.spd-inquiry:hover { background: #e1e2e5; color: #202223 !important; }
.spd-stock { margin: 20px 0; }
.spd-product .reset_variations { display: none !important; }

@media (max-width: 767px) {
  .spd-share{
            display: none;
  }
  .spd-product,
  .spd-summary { min-height: 0; }

  .spd-share { margin-bottom: 22px; }
  .spd-title { font-size: 34px; }
  .spd-radio-group { margin-top: 22px; }
}
