.dk_gift_add-to-cart {
  width: 100%;
  padding: 16px;
  background-color: var(--dk-color-backgroundSecondary, black);
  cursor: pointer;
  border: none;
  font-size: 18px;
  font-weight: bold;
  color: var(--dk-color-textSecondary, white);
}

.dk_gift_add-to-cart:disabled {
  background-color: #ddd;
  cursor: not-allowed;
}

.dk_gift_add-to-cart:enabled:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.dk_gift_canvas {
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 9999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
}

.dk_gift_close {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 32px;
  height: 32px;
  background: none;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  color: var(--dk-color-textSecondary, white);
}

.dk_gift_close div {
  font-size: 28px;
  line-height: 28px;
}

.dk_gift_close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.dk_gift_message {
  margin: 0px;
  font-weight: bold;
  color: var(--dk-color-textSecondary, white);
}

.dk_gift_message_container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px;
}

.dk_gift_modal {
  overflow: auto;
  width: 100%;
  max-width: 600px;
  max-height: 600px;
  background-color: var(--dk-color-backgroundSecondary, black);
  border-radius: 8px;
  color: rgb(18, 18, 18);
}

.dk_gift_modal div:empty {
  display: none;
}

.dk_gift_product_button svg {
  min-width: 12px;
}

.dk_gift_product_button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  background-color: var(--dk-color-backgroundSecondary, black);
  cursor: pointer;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  color: var(--dk-color-textSecondary, white);
}

.dk_gift_product_button:disabled {
  background-color: #ddd;
  cursor: not-allowed;
}

.dk_gift_product_button:enabled:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.dk_gift_product_container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.dk_gift_product_info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  overflow: hidden;
}

.dk_gift_product_info_wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  overflow: hidden;
  width: 100%;
}

.dk_gift_product_image {
  display: flex;
  justify-content: center;
  align-content: center;
  overflow: hidden;
  width: 80px;
  min-width: 80px;
  height: 80px;
  border: 1px solid #ddd;
}

.dk_gift_product_options {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.dk_gift_product_options select {
  padding: 4px 12px;
  background: none;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.dk_gift_product_price-range {
  text-decoration: line-through;
}

.dk_gift_product_prices {
  display: flex;
  gap: 8px;
  color: #999;
}

.dk_gift_product_prices p {
  margin: 0px;
  font-size: 12px;
}

.dk_gift_product_title {
  overflow: hidden;
  margin: 0px;
  font-size: 16px;
  font-weight: bold;
  color: var(--dk-color-textPrimary, black);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dk_gift_product_unavailable {
  color: red;
  font-size: 1.2rem;
}

.dk_gift_products {
  scrollbar-width: thin;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 256px;
  padding: 16px;
  background-color: var(--dk-color-backgroundPrimary, white);
}

.dk_gift_selections {
  scrollbar-width: thin;
  display: flex;
  flex-direction: row;
  gap: 8px;
  overflow-y: auto;
  max-height: 128px;
  padding: 16px;
  background-color: var(--dk-color-backgroundPrimary, white);
  border-top: 1px solid #ddd;
}

.dk_selection-container {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 36px;
  height: 36px;
  background-color: #ddd;
  border-radius: 4px;
  cursor: pointer;
}

.dk_selection-container:hover {
  box-shadow: 0px 0px 0px 2px #ddd;
  outline: thin solid #ddd;
}

.dk_selection-container.current {
  box-shadow: 0px 0px 0px 2px var(--dk-color-backgroundSecondary, #000);
  outline: thin solid var(--dk-color-backgroundSecondary, #000);
}

@media screen and (max-width: 600px) {
  .dk_gift_canvas {
    align-items: flex-end;
  }

  .dk_gift_modal {
    max-width: 100%;
    max-height: 100%;
    border-radius: 0px;
  }
}
