:root {
  /* --primary-color: #e06738; */
  /* --primary-color-light: #e68560; */
  --primary-color: #5dab6a;
  --primary-color-light: #7fd78e;
}

.sport-categories .box-heading {
  display: block !important;
}

.sport-categories .sport-category {
  display: flex;
  gap: 4px;
  font-size: 16px;
  flex-direction: column;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.sport-category img {
  width: 100px;
  height: 100px;
  border: 3px solid black;
  border-radius: 100%;
  object-fit: contain;
}

.sport-categories .sport-category:hover {
  opacity: 1;
}

.sport-category:hover img {
  opacity: 1 !important;
}

.shipping-method-wrapper {
  display: flex !important;
  align-items: center;
  gap: 6px;
}

.shipping-method-wrapper input,
.shipping-method-wrapper p {
  margin: 0px !important;
}

.shipping-method-wrapper select {
  width: 100%;
  max-width: 500px;
}

.shipping-method-price {
  font-weight: 500;
}

.cookie-banner {
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 100;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222;
  color: white;
  padding: 16px;
  display: none;
}

.cookie-banner a {
  color: var(--primary-color);
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cookie-buttons button {
  border-radius: 30px;
  border: 0px;
}
#accept-cookies {
  background: var(--primary-color);
}
#reject-cookies {
  background: rgb(174, 65, 65);
}
#manage-cookies {
  background: rgb(59, 59, 101);
}

.cookie-modal {
  z-index: 1000;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  background: rgba(0, 0, 0, 0.37);
}

.cookie-modal-container {
  height: fit-content;
  position: relative;
  display: flex;
  flex-direction: column;
  background: white;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 16px;
}

.cookie-modal-container label {
  cursor: pointer;
}

#cookie-modal-close-btn {
  background: transparent;
  position: absolute;
  border: 0;
  right: 10px;
  top: 10px;
}

#save-cookie-settings {
  margin-top: 8px;
  border-radius: 30px;
  border: 0;
  background: var(--primary-color);
  color: white;
}

.checkkout-total-title {
  display: flex;
  justify-content: end;
  font-weight: 600;
  align-items: center;
  gap: 4px;
  white-space: initial;
}

.dropdown-checkout-product {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}
.dropdown-checkout-product-name-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.dropdown-checkout-product-name p {
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  width: 160px;
  margin: 0px !important;
}
