/* header */
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --primary-color: #fff;
  --bg-color: #2a2a2a;
  --section-padding: 30px 30px;
  --h2-weight: 500;
  --border-radius: 4px;
  --green: #016228;
  --light-orange: #f36c0c;
}
.green {
  color: var(--green);
  display: block;
}
.lightorange {
  color: var(--light-orange);
  vertical-align: middle;
}
.bottom-msg {
  text-align: center;
}
.bottom-msg img {
  margin-bottom: 3px;
}
a {
  text-decoration: none;
  color: var(--text-center);
}

body {
  margin: 0;
  padding: 0;
  font-family: "Jost", sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
}
button:focus:not(:focus-visible),
input:focus-visible {
  outline: 0;
  box-shadow: none;
}
h1 {
  font-size: 35px;
  color: var(--bg-color);
  margin-bottom: 10px;
}

p,
ul li {
  font-size: 16px;
}
.section {
  padding: var(--section-padding);
}

header {
  box-shadow:
    rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  padding: 4px 2px;
}
.border-radius {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}
/* header */

.product {
  gap: 19px;
}
.pro-price {
  font-size: 30px;
  font-weight: var(--font-weight);
}
.product i {
  color: #4f8506;
  font-weight: var(--font-weight);
  font-size: 12px;
}
#quantity::-webkit-outer-spin-button,
#quantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product strong {
  font-size: var(--font-size);
}
.product span.detail {
  font-size: 23px;
  margin-top: 30px;
  display: block;
  margin-bottom: 10px;
  font-weight: var(--h2-weight);
}
.pro-price strike {
  color: #929191;
  font-weight: 300;
  font-size: 22px;
}
.carousel-indicators button.thumbnail {
  width: 40px;
  margin: 5px;
  border-radius: 4px;
}
.thumbnail-slide .carousel-item img {
  width: 430px;
}
.carousel-indicators button.thumbnail img {
  border: 1px solid #ccc;
  border-radius: var(--border-radius);
}
.carousel-indicators button.thumbnail:not(.active) {
  opacity: 0.7;
}
.thumbnail-slide .carousel-control-next-icon,
.thumbnail-slide .carousel-control-prev-icon {
  filter: brightness(0) saturate(100%) invert(0%) sepia(97%) saturate(7500%)
    hue-rotate(206deg) brightness(80%) contrast(94%);
}
.thumbnail-slide .carousel-item img {
  margin: auto;
}
.carousel-indicators {
  position: static;
}
.social {
  display: flex;
  align-items: center;
}
.social i {
  display: inline-flex;
  margin: 6px 10px 0px;
  transition: transform 0.3s ease;
}
.social i:hover {
  color: #28026a;
  transform: translateY(-5px);
}
.selling span {
  background-color: #28026a;
  padding: 8px 10px;
  border-radius: 4px;
  color: #fff;
  display: inline-flex;
  margin-right: 10px;
  font-size: 16px;
  margin-bottom: 8px;
}
.selling span:first-child {
  background-color: #dac5fe;
  color: #28026a;
}
.cart strike {
  color: #929191;
  font-weight: 300;
  font-size: 13px;
  display: block;
}
.addtocart {
  background-color: #28026a;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 10px 30px;
  color: #fff;
  border: 1px solid #28026a;
}
.addtocart:hover {
  background-color: #732382;
}

.addtocart:focus {
  background-color: #28026a;
  color: #fff;
}
.shop-buttons {
  margin-top: 49px;
}
.shop-buttons button {
  width: 47%;
  margin-right: 34px;
}
.shop-buttons button:last-child {
  margin-right: 0px;
}
.rating {
  display: inline-flex;
  gap: 3px;
  line-height: 20px;
}

/* FAQ */
.faq .accordion-button:not(.collapsed) {
  background-color: #dac5fe;
  color: #28026a;
}
.faq .accordion-button {
  font-size: 18px;
  font-weight: 500;
}
.highlights h3 {
  margin-bottom: 15px;
}
.pro-list {
  background: #f4f4f4;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow:
    rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.pro-list ul li {
  margin-bottom: 8px;
}

/* FAQ */

/* Form */
#myForm label {
  font-weight: 600;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}
/* Form */

/* footer */
.bottom-footer {
  background: #dac5fe;
  margin-top: 60px;
}
/* footer */

.error-border {
  border: 1px solid red;
}

.error {
  margin-bottom: 10px;
  display: flex;
  color: #f67d3c;
}
