
/* página de produto */

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}

@media (max-width: 800px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-gallery {
    grid-row: 1;
  }
}

.product-gallery {
  /* grid-template-columns: 97px 1fr; */
  grid-gap: 20px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 800px) {
  .product-gallery {
    grid-template-columns: 1fr;
  }
  .product-gallery-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
  }
  .product-gallery-list img {
    width: 95px !important;
    height: 95px !important;
    margin: 0 0 0 0 !important;
}
}

.product-gallery-list img {
  margin-bottom: 20px;
}

.product-gallery-list {
  display: flex;
  order: 2;
  margin: 0 0 20px 0;
}

.product-gallery-list img {
  width: 120px;
  height: 120px;
  margin: 0 20px 0 0;
}

.product-detail small {
  display: block;
  color: rgba(0,0,0,.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-detail h1 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 40px;
}

.product-detail h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.product-detail .product-price {
  width: 100%;
  margin: 10px 0;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #888;
}

@media (max-width: 800px) {
  .product-detail h1 {
    margin-bottom: 20px;
  }
}

.product-detail .button {
  background: #000;
  color: #fff;
  padding: 12px 15px;
  min-width: 200px;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  margin-top: 20px;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-detail .button::after {
  content: '';
  display: block;
  background: url('../img/icons/add.svg') no-repeat center center;
  width: 16px;
  height: 16px;
  transition: .3s;
  display: none;
}

.product-detail .button:hover::after {
  transform: rotate(180deg);
}

.product-detail .button.disabled {
  opacity: .5;
  cursor: initial;
}

.product-detail .variations tr {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.product-detail select {
  font-size: 1rem;
  padding: 0 30px 0 10px;
  cursor: pointer;
  height: 2.642rem;
  line-height: 2.642rem;
  max-width: 100%;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: start;
  position: relative;
  border: 1px solid #aeaeae;
  color: #505050;
  display: inline-block;
}

.product-detail .reset_variations {
  /* display: none !important; */
}

.product-detail .stock {
  margin-bottom: 10px;
}


.product-detail h1 {
  margin: 0 0 20px 0;
  font-size: 26px;
}

form table.variations td.label label {
  font-size: 16px;
  color: #555555;
  letter-spacing: .5px;
}

a.reset_variations {
  display: inline-block;
  margin-left: 1rem;
  text-decoration: underline;
  opacity: 1 !important;
}

td.value {
  display: inline-block;
  width: 100%;
}

table.variations {
  width: 100%;
  max-width: 100%;
}

.woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-enabled {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: inherit;
}

button.single_add_to_cart_button,
.woocommerce button.button.alt.disabled {
  height: auto;
  font-size: .85rem !important;
  border-radius: 0px !important;
  padding: 15px !important;
  background-color: #262626 !important;
  border: 1px solid rgb(38 38 38) !important;
  color: #ffffff !important;
  min-width: 190px;
  margin-right: .4rem;
  display: inline-block !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
}


button.single_add_to_cart_button:hover,
.woocommerce button.button.alt.disabled:hover {
  background-color: #262626 !important;

}

.quantity {
  height: 100%;
  margin-right: 20px;
  display: inline-block;
}

.woocommerce .quantity .qty {
  text-align: center;
  padding: 9px;
  border: 1px solid #ccc;
}

.card-body {
  padding: 10px 0;
  max-height: 300px;
  padding-bottom: 10px;
  overflow-x: hidden;
  overflow-y: auto;
}


.card-body::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.card-body::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.card-body::-webkit-scrollbar-thumb {
  background: rgb(61, 61, 61);
}

/* Handle on hover */
.sicard-bodydebar::-webkit-scrollbar-thumb:hover {
  background: rgb(39, 39, 39);
}

.card-header button {
  background: transparent;
  padding: 13px 0;
  border-top: 1px solid #ccc !important;
  border-radius: 0px;
  text-align: left;
}

.card {border: 0px solid;}

.card-header {padding: 0;background: transparent;border: 0px solid transparent;}

button.btn.btn-link {
  color: #222222;
  width: 100%;
}

.woocommerce-tabs.wc-tabs-wrapper {
  padding: 20px 0;
}

.btn-link:hover {
  text-decoration: none;
}

.collapse.show {
  border-top: 1px solid #ccc;
}
.breadcrumb {
    background: transparent;
    margin: 0;
}

.woocommerce .woocommerce-breadcrumb {
    margin: 20px 0;
}


@media(max-width:767px){

  .product-gallery-list {
    overflow-x: scroll;
    margin: 0 0 20px 0;
  }
}

.related-p {
  text-align: center;
  padding: 60px 0;
}

.related-p h2 {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 24px;
  margin: 0;
}