:root {
    --color-primary: #84c8bb;
}

/* 這是2025 多規頁面跑 */
.product-header .product-title {
    font-size: 24px;
}


.sku-container {
  margin: auto;
  display:block;
  width:100%;
}
.sku-section {
  margin-bottom: 32px;
  h4{
    margin-bottom:8px;
  }
}
.sku-btn {
 
  padding: 8px 14px; 
  margin-right:10px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
  

}
.sku-btn:hover {
  /* background-color: var(--color-primary); */
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.sku-btn.active {
  background-color: var(--color-primary);
  color:#fff;
  &:hover{
    color:#fff;

  }
}
.sku-result {
  border-top: 1px solid #ccc;
  margin-top: 20px;
  padding-top: 16px;
}
.sku-cart-btn {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #28a745;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.sku-cart-btn.disabled,
.sku-cart-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.sku-btn.disabled {
  background-color: #eee;
  color: #999;
  border-color: #ccc;
  cursor: not-allowed;
}
.touchspin {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
  width: fit-content;
}

.touchspin input {
  width: 60px;
  text-align: center;
  border: none;
  outline: none;
  font-size: 16px;
  height: 36px;
}

.touchspin button {
  width: 36px;
  height: 36px;
  font-size: 20px;
  border: none;
  background-color: #f0f0f0;
  cursor: pointer;
  user-select: none;
}

.touchspin button:disabled {
  background-color: #e0e0e0;
  color: #999;
  cursor: not-allowed;
}

.product-body{
  max-width: 760px;
  margin: 0 auto;
}
