:root {
  --primary: #1d1d1b;
  --primary-rgb: 29, 29, 27;
  --secondary: #4c4f3b;
  --secondary-rgb: 76, 79, 59;
  --tertiary: #e99ba5;
  --tertiary-rgb: 233, 155, 165;
  --title-color: #1d1d1b;
  --title-light-color: #d1d1b1;
  --text-color: #1d1d1b;
  --text-light-color: #fafcfe;
  --indigo: #0e0e2c;
  --accent: #f5f5f5;
  --light: #fafcfe;
  --light-border: #e4e4e4;
  --container-size: 1000px;
  --container-width: 1200px;
  --link: var(--primary);
  --link-color: #4b4ded;
  --footer-color: var(--secondary);
  --max-width: 1200px;
  --title-font: "century-gothic";
  --price-font: "century-gothic";
  --text-font: "Mulish";
}

/* COMBINED PRODUCTS */

.add_to_cart_quantity_button_container {
  display: flex;
  margin-top: 2rem;
}

.combined_products_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--tertiary);
  color: white;
  margin-bottom: 0;
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.combined_products_title:hover {
  background: rgba(var(--tertiary-rgb), 0.8);
}
.combined_products_title span {
  font-size: 1rem;
}

.combined_products_container {
  list-style-type: none;
  padding-left: 0;
  padding-top: 1rem;
  margin-top: 0;
  background: var(--accent);
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

.combined_single_product {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  gap: 1em;
}
.combined_single_product:hover {
  background-color: rgba(var(--primary-rgb), 0.1);
}
.combined_single_product .combined_single_product_link {
  position: relative;
}
.combined_single_product .product_image_container {
  position: absolute;
  display: none;
  left: -250px;
  top: -3.5rem;
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
}
.combined_single_product:hover .product_image_container {
  display: block;
  z-index: 99;
}

.combined_product_checkbox {
  align-self: stretch;
}

.combined_product_thumbnail {
  width: 5rem;
}
