.category-spec-product {
  color: var(--primary-color);
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}

.group-spec-product {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  font-weight: 700;
}

.item-spec-product {
  padding: 7px 0 14px 0;
  border-bottom: 1px solid #000;
  display: flex;
  justify-content: space-between;
}

.item-spec-product:last-child {
  border-bottom: 0 !important;
}

.item-spec-product div:nth-child(1) {
  width: 400px;
}

.item-spec-product div:nth-child(2) {
  width: calc(100% - 400px);
}

.container-specs {
  overflow: auto;
}

.container-specs * {
  font-family: "OpenSans" !important;
}

.category-header-product {
  position: sticky;
  top: 0;
  left: 0;
  background: #fff;
  padding-bottom: 10px;
  z-index: 10;
}
/* 
.sizes-container {
  padding-top: 30px;
  overflow-x: hidden;
}

.sizes-container .name-product-size {
  font-size: 30px;
  text-transform: uppercase;
  font-family: Oswald;
  color: var(--primary-color);
  margin-bottom: 30px;
  position: relative;
}

.sizes-container .name-product-size::after {
  position: absolute;
  left: 0;
  bottom: -5px;
  content: "";
  width: 200px;
  height: 3px;
  background: var(--primary-color);
}

.sizes-container {
  max-width: 1000px;
  margin: 0 auto;
}

.sizes-container img {
  width: 100%;
  margin: 0 auto;
} */

.sizes-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: 1200px;
  margin-top: 50px;
  gap: 50px;
}

model-viewer {
  filter: brightness(1.3);
}

.sizes-product-3d-content {
  width: 100%;
  aspect-ratio: 1 /1;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.sizes-product-3d-content-title {
  font-weight: 700;
  font-size: 24px;
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--primary-color);
  width: calc(100% - 40px);
}

.sizes-product-3d-content-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.sizes-product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  margin-top: 15px;
}

.sizes-product-container > div {
  width: 100%;
  background: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  justify-content: space-between;
}

.name-product-size {
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  color: var(--primary-color);
}

.divider-grid .name-product-size {
  margin-bottom: 0;
}

.name-product-size::after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  position: absolute;
  bottom: -5px;
  left: 0;
}

.size-product-content {
  margin-top: auto;
}

.size-product-content img {
  width: 100%;
  height: auto;
}

.divider-grid {
  padding-bottom: 0 !important;
}

.download-title {
  font-family: Oswald;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  border-bottom: 2px solid var(--primary-color);
  margin-top: 25px;
}

.download-item {
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.download-item p {
  margin-bottom: 0;
}

#downloads > div > .download-item:nth-last-child() {
  border-bottom: 1px solid #ffffff;
}

/* .download-item:hover {
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
} */

.download-item i {
  font-size: 24px;
  color: var(--primary-color);
}

.specs-container-product {
  max-height: 100vh;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.content-specs-container-product {
  overflow-x: auto;
  overflow-y: hidden;
}

.specs-container-product.expanded {
  max-height: none;
}

.button-hanlder-control-specs {
  position: sticky;
  right: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 10;
  padding: 20px 0 5px 0;
  overflow: hidden;
  bottom: 0;
}

.container-specs-container-product {
  position: relative;
  overflow: hidden;
}

.button-hanlder-control-specs::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -5%;
  bottom: 0;
  right: 0;
  background: linear-gradient(#ffffffe0, #ffffff);
  filter: blur(10px);
  width: 110%;
}

.specs-container-product.expanded .button-hanlder-control-specs::after {
  display: none;
}

@media (max-width: 1200px) {
  .item-spec-product div:nth-child(1) {
    width: 320px;
  }

  .item-spec-product div:nth-child(2) {
    width: calc(100% - 320px);
  }
}

@media (max-width: 972px) {
  .sizes-container {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0 auto;
    max-width: 500px;
    margin-top: 50px;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .item-spec-product div:nth-child(1) {
    width: 220px;
  }

  .item-spec-product div:nth-child(2) {
    width: calc(100% - 220px);
  }
}

@media (max-width: 620px) {
  .item-spec-product div:nth-child(1) {
    width: 155px;
  }

  .item-spec-product div:nth-child(2) {
    width: calc(100% - 155px);
  }
}

#characteristics {
  margin-top: 50px;
}

.characteristics-product-container {
  margin-top: 50px;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.characteristics-product-container-content {
  gap: 5px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.characteristics-product-item {
  background: #eeeeee;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 15px;
  gap: 5px;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.characteristics-product-image-container {
  width: 80px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.characteristics-product-image-container.green {
  border: 2px solid rgb(0, 167, 64);
}

.characteristics-product-item img {
  height: 50px;
  width: 50px;
}

.characteristics-product-item img.large {
  height: 65px;
  width: 65px;
}

/* .characteristics-product-item img.large {
  height: 50%;
}

.characteristics-product-item img.small {
  height: 40%;
}

.characteristics-product-item img.extra-small {
  height: 30%;
} */

.characteristics-product-item:hover {
  background: var(--primary-color);
  color: #fff;
}

.characteristics-product-item.green:hover {
  background: rgb(1, 148, 58);
  color: #fff;
}

.characteristics-product-item:hover .characteristics-product-image-container,
.characteristics-product-item:hover img {
  filter: brightness(0) invert(1);
}

.characteristics-product-text-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.characteristics-product-item-name {
  font-size: 22px;
  font-weight: 700;
}

.characteristics-product-title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 1em;
  margin-top: 0.5em;
  line-height: 1em;
}

.characteristics-product-desc {
  font-size: 11px;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .characteristics-product-container-content {
    grid-template-columns: repeat(5, 1fr);
    max-width: 700px;
  }
}

@media (max-width: 720px) {
  .characteristics-product-container-content {
    grid-template-columns: repeat(4, 1fr);
    max-width: 500px;
  }
}

@media (max-width: 560px) {
  .characteristics-product-container-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
