/**
 * Theme Name:     Hello Elementor Child
 * Author:         Toob | Tobias Hesselink
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    -
 * Author URI:     http://www.toob.nl
 */
.toob-add-to-cart-wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 8px;
}

.toob-variation-select {
  flex: 1;
  padding: 8px 12px;
  height: 42px;
  border-radius: 12px;
  background: #fff;
  border: none;
  font-size: 12px;
	font-family: "DM Sans", Sans-serif;
	font-weight: 300;
	border-right: 16px solid transparent
}
.toob-variation-select:focus {
/*   border-color: #d9d9d9 !important; */
  outline: none !important;
  box-shadow: none !important;
}

.toob-add-to-cart-btn {
  width: 42px;
  height: 42px;
  background: #4caf50;
  border-radius: 8px !important;
  padding: 0 !important;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.toob-add-to-cart-btn:hover {
  background: #20342f;
}

.toob-add-to-cart-btn.toob-loading:hover,
.toob-add-to-cart-btn.toob-success:hover {
  background: #20342f;
}

.toob-add-to-cart-btn:disabled {
  background: #cccccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.toob-add-to-cart-btn:disabled:hover {
  background: #cccccc;
}

.toob-variation-select:disabled {
  background: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.6;
}

.toob-btn-icon {
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.toob-spin {
  animation: toobSpin 1s linear infinite;
}

@keyframes toobSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Single Product Cart Styles */
.toob-single-cart-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 500px;
}

.toob-variation-swatches {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 8px !important;
}

.toob-variation-swatch {
  padding: 10px 20px !important;
  background: #ffffff !important;
  border: 1px solid #20342f !important;
  border-radius: 8px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  color: #333 !important;
  outline: none !important;
  text-align: center !important;
	    font-family: "DM Sans", Sans-serif !important;
}

.toob-variation-swatch:hover:not(.disabled):not(.active) {
  border-color: #20342f !important;
  background: #f5f5f5 !important;
}

.toob-variation-swatch:focus {
  outline: none !important;
}

.toob-variation-swatch.active {
  background: #20342f !important;
  border-color: #20342f !important;
  color: #ffffff !important;
}

.toob-variation-swatch.disabled {
  background: #f5f5f5 !important;
  color: #999 !important;
  cursor: not-allowed !important;
  opacity: 0.7 !important;
}

.toob-single-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.toob-price-amount {
  font-size: 32px;
  font-weight: 700;
  color: #20342f;
  font-family: "DM Sans", sans-serif;
}

.toob-price-tax {
  font-size: 14px;
  color: #666;
  font-family: "DM Sans", sans-serif;
}

.toob-out-of-stock-notice {
  font-size: 14px;
  color: #d32f2f;
  font-weight: 500;
}

.toob-single-cart-controls {
  display: flex;
  gap: 12px;
  align-items: center;
}

.toob-quantity-select {
  width: 80px;
  padding: 12px 16px;
  height: 50px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #20342f;
  font-size: 16px;
  cursor: pointer;
}

.toob-quantity-select:hover {
  border-color: #d9d9d9 !important;
}

.toob-quantity-select:focus {
  border-color: #d9d9d9 !important;
  outline: none !important;
  box-shadow: none !important;
}

.toob-quantity-select:disabled {
  background: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.6;
}

.toob-single-cart-btn {
  height: 50px !important;
  background: #519332 !important;
  border: none !important;
  border-radius: 8px !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  transition: background 0.2s ease !important;
  padding: 0 30px !important;
  width: auto !important;
  outline: none !important;
}

.toob-single-cart-btn:hover:not(:disabled) {
  background: #20342f !important;
}

.toob-single-cart-btn:focus {
  outline: none !important;
}

.toob-single-cart-btn:disabled {
  background: #cccccc !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
}

.toob-single-cart-btn.toob-loading,
.toob-single-cart-btn.toob-success {
  pointer-events: none !important;
}

.toob-cart-icon {
  font-size: 20px;
  line-height: 1;
}

.toob-cart-icon img {
    width: 20px;
    height: 20px;
    display: block;
}

@media (max-width: 767px) {
    .toob-cart-icon img {
        width: 18px;
        height: 18px;
    }
}

.toob-cart-text {
  line-height: 1;
		    font-family: "DM Sans", Sans-serif !important;
}

.kaamps-back-button {
	cursor: pointer;
}
