
.product-body {
  display: grid;
  gap: 10px;
  grid-template-columns: 260px auto 260px;
  grid-template-areas:
      "SL N N"
      "SL I SEL"
      "B B B"
      "G G G"
      "O O O"
      "tabs tabs tabs";
}
.product-name {
  display: flex;
  grid-area: N;
  max-width: 100%;
  background: var(--color-bg-box);
  border: var(--color-box-border);
  box-shadow: var(--box-shadow-externa);
  width: -webkit-fill-available;
  font-weight: 700;
  font-size: 29px;
  line-height: 32px;
  color: #000000;
  padding: 5px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}
.product-name h1 {
  padding: 0px 15px 0px 15px;}


a.fancybox-url {
  width: 100%;
  height: 100%;
}

.product-info-top {
  grid-area: B;
  gap: 5px;
  display: grid;
  max-width: 100%;
  border-radius: 8px;
  padding: 5px;
  background: var(--color-bg-box);
  border: var(--color-box-border);
  box-shadow: var(--box-shadow-externa);
  align-items: center;
  grid-template-columns: 50% 50%;
  grid-template-areas:
      "price button"
      "rules rules";
}

.product-options {
  grid-area: O;
  display: flex;
  max-width: 100%;
  padding: 5px;
  background: var(--color-bg-box);
  border: var(--color-box-border);
  box-shadow: var(--box-shadow-externa);
  border-radius: 8px;
  align-items: center;
}
.product-info-bottom {
  grid-area: I;
  display: grid;
  max-width: 100%;
  gap: 5px;
  background: var(--color-bg-box);
  border: var(--color-box-border);
  box-shadow: var(--box-shadow-externa);
  border-radius: 8px;
  padding: 10px 15px 10px 15px;
  grid-template-areas:
      "TYPE-T SEL-T"
      "TYPE-V SEL-V"
      "PLAT-T REF-T "
      "PLAT-V REF-V";
}
.product-info-type-text {
  grid-area: TYPE-T;
}
.product-info-type-name {
  grid-area: TYPE-V;
}
.product-info-platform-text {
  grid-area: PLAT-T;
}
.product-info-platform-name {
  grid-area: PLAT-V;
}
.sells-text {
  grid-area: SEL-T;
}
.sells-name {
  grid-area: SEL-V;
}
.refunds-text {
  grid-area: REF-T;
}
.refunds-name {
  grid-area: REF-V;
}
.product-info-type-text, 
.refunds-text,.sells-text,
.product-info-platform-text,
.product-info-type-text {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.product-info-seller {
  display: grid;
  grid-area: SEL;
  gap: 5px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  padding: 15px 15px 5px 15px;
  grid-template-areas:
      "TITLE"
      "NAME"
      "RNAME"
      "RNUMB"
      "BUY";
  background: var(--color-bg-box);
  border: var(--color-box-border);
  box-shadow: var(--box-shadow-externa);
}
.seller-text {
  display: flex;
  grid-area: TITLE;
  padding: 0px 5px 0px 5px;
  align-items: center;
}
.seller-name {
  display: flex;
  grid-area: NAME;
  gap: 10px;
  padding-left: 10px;
}
.seller-name a {
  display: flex;
  gap: 10px;
  align-items: center;
}



.btn,.btn-disabled {
    float:left;
  }
  
  .checkbox:checked~.btn-disabled {
    display: none;
    background: transparent;
  }
  
  .checkbox:not(:checked)~.btn {
    display: none;
  }
 
  .product-info-buy-button {
    grid-area: button;
    justify-self: center;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.product-info-buy-button button {
  height: 80%;
  min-height: 60px;
  width: 80%;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(239, 248, 253);
  border-radius: 8px;
  text-align: center;
  outline: none;
  cursor: pointer;
  box-sizing: border-box;
  background-color: var(--color-bg-box-subsecondary);
  border: var(--color-box-border-subsecondary);
  border-top-color: var(--color-box-border-top-subsecondary);
  box-shadow: var(--box-shadow-externa-subsecondary);
  background-image: var(--bg-image-gradient);
}
.product-info-buy-button button:hover {
    box-shadow: 0px 0px 0 2px #1A87BC3d;
}

button[disabled]{
    background-color: rgb(199 199 199);
    border: 1px solid rgb(198 198 198);
    border-top-color: rgb(189 189 189);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -khtml-border-radius: 8px;
    border-radius: 8px;
    text-align: center;
    -webkit-box-shadow: inset 0 1px rgba(255,255,255,0.3), 0 1px 2px rgba(0,0,0,0.15), 0 3px 8px rgba(0,0,0,0.1);
    -moz-box-shadow: inset 0 1px rgba(255,255,255,0.3), 0 1px 2px rgba(0,0,0,0.15), 0 3px 8px rgba(0,0,0,0.1);
    -khtml-box-shadow: inset 0 1px rgba(255,255,255,0.3), 0 1px 2px rgba(0,0,0,0.15), 0 3px 8px rgba(0,0,0,0.1);
    box-shadow: inset 0 1px rgba(255,255,255,0.3), 0 1px 2px rgba(0,0,0,0.15), 0 3px 8px rgba(0,0,0,0.1);
    outline: none;
    cursor: not-allowed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    background-image: -webkit-linear-gradient(rgba(255,255,255,0.35), rgba(255,255,255,0) 75%);
    background-image: -moz-linear-gradient(rgba(255,255,255,0.35), rgba(255,255,255,0) 75%);
    background-image: linear-gradient(rgba(255,255,255,0.35), rgba(255,255,255,0) 75%);
  }
  .product-info-rules {
    grid-area: rules;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0px auto 0px auto;
    flex-wrap: wrap;
}
label.product-info-rules {
    font-size: 16px;
    height: 100%;
}
.product-info-price span {
    color: black;
    line-height: 0px;
}
span.price {
  margin-right: 5px;
}
.product-info-price {
  justify-self: center;
  grid-area: price;
  font-weight: 700;
  width: 100%;
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
}
.product-info-price-container {
  position: relative;
  font-weight: 700;
  width: 80%;
  height: 80%;
  min-height: 60px;
  padding: 0 5px 0 5px;
  align-items: center;
  display: flex;
  box-shadow: var(--box-shadow-interna);
  justify-content: center;
  background: var(--color-bg-box-secondary-1);
  border-radius: 6px;
  font-size: 25px;
}





  
  
  .tab-content-product {
    display: none;
    min-width: 320px;
    min-height: 350px;
    float: left;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    font-size: 16px;
    border-radius: 8px;
    font-weight: 600;
    line-height: normal;
    text-transform: none;
    background-position: right center;
    text-decoration: none;
    box-shadow: var(--box-shadow-interna);
    background: var(--color-bg-box-secondary);
    border: var(--color-box-border);
}
  


.good-container-add-information-title {
    font-size: 24px;
    padding: 20px 0 10px 0px;
    display: flex;
    justify-content: center;
}

/* Карточка товара в рекомендованных */
.good-container-recom {
  display: flex;
  width: 225px;
  height: 375px;
  background: var(--color-bg-box);
  border: 0px solid #F0F0F0;
  border-radius: 12px;
  overflow: hidden;
  padding: 0px;
  box-shadow: var(--box-shadow-externa-subsecondary);
  flex-wrap: nowrap;
  margin-right: 10px;
  flex-direction: column;
  margin-bottom: 10px;
}
  
  .good-container-recom:hover {
    box-shadow: 0px 4px 7px 3px rgb(0 0 0 / 7%);
    transition: all 0.3s;
  }
  
  .good-img-recom {
    display: flex;
    border-radius: 10px 10px 0px 0px;
    object-fit: cover;
    width: 100%;
    height: 60%;
    position: relative;
  }

  .good-img-recom::before {
    content: "";
    transition: background-color .2s, opacity .2s ease-in-out;
    position: absolute;
    display: block;
    background: 0 0;
    width: 100%;
    height: 100%;
    opacity: 0.06;
    background-color: black;
}
  .good-img-recom a {
    width: 100%;
  }
  .good-img-recom img {
    position: relative;
    top: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  
  .good-info-about-recom {
    display: flex;
    justify-content: space-between;
    padding: 0px 10px 3px 10px;
    flex-wrap: wrap;
    height: 31px;
    margin-bottom: 5px;
  }
  
  .good-info-down-recom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0px 7px 0px 7px;
    margin-bottom: 5px;
  }
  
  .good-info-recom {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    flex-direction: column;
    height: 40%;
  }
  
  .good-info-about-type-recom, .good-info-about-plarform-recom {
    display: flex;
    width: auto;
    margin-bottom: 5px;
    padding: 5px;
    border-radius: 8px;
    border: var(--color-box-border);
    background: var(--color-bg-box);
    box-shadow: var(--box-shadow-interna);
  }
  .good-info-about-plarform-recom {
    right: 0;
  }
  span.good-info-type-recom,
  span.good-info-plarform-recom {
    color: rgb(94, 95, 101);
    font-size: 13px;
    height: 14px;
    display: flex;
    align-items: center;
    font-weight: 500;
  }
  .good-info-type-recom img, .good-info-plarform-recom img {
    margin-right: 3px;
    height: 14px!important;
    width: 14px!important;
  }
  .good-info-about-sells-recom, .good-info-about-reviews-recom {
    display: flex;
    width: 50%;
    gap: 5px;
    justify-content: flex-end;
    align-items: center;
}
  .good-info-buy-recom {
    font-weight: 700;
    width: 40%;
    height: 38px;
    align-items: center;
    display: flex;
    justify-content: center;
    color: rgb(239, 248, 253);
    border-radius: 6px;
    text-align: center;
    outline: none;
    cursor: pointer;
    box-sizing: border-box;
    background-color: var(--color-bg-box-subsecondary);
    border: var(--color-box-border-subsecondary);
    border-top-color: var(--color-box-border-top-subsecondary);
    box-shadow: var(--box-shadow-externa-subsecondary);
    background-image: var(--bg-image-gradient);
  }
  
  .good-info-price-recom {
    font-weight: 700;
    width: 35%;
    line-height: 16px;
    height: 38px;
    padding: 0 5px 0 5px;
    align-items: center;
    display: flex;
    border-radius: 6px;
    box-shadow: var(--box-shadow-interna);
    justify-content: center;
    background: var(--color-bg-box-secondary-1);
    border-radius: 6px;
  }
  
  .good-info-buy-recom a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
  }
  
  .good-info-buy-recom:hover {
    box-shadow: 0px 0px 0 2px #1A87BC3d;
  }
  
  .good-info-price-recom span {
    color: black;
    line-height: 0px;
  }
  
  .good-info-title-recom a {
    font-weight: 600;
    font-size: 13px;
    line-height: 19px;
    color: #5E5F65;
    padding: 0 10px 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 62px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    overflow-wrap: break-word;  /* не поддерживает IE, Firefox; является копией word-wrap */ 
    word-wrap: normal;
    line-break: auto;  /* нет поддержки для русского языка */ 
    hyphens: manual;  /* значение auto не поддерживается Chrome */ 
  }
  .good-info-title-recom::after {
    content: "";
    display: block;
    height: 1px;
    background-color: #5E5F65;
    margin-bottom: 5px;
    width: 90%;
    margin-left: 10px;
  }
 
  span.good-info-sells-recom,
  span.good-info-reviews-recom {
    color: rgb(94 95 101 / 77%);
    font-size: 12px;
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 15px;
    width: 50%;
  }
  
    span.good-info-sells, span.good-info-reviews, span.good-info-type, span.good-info-plarform {
      color: rgb(94 95 101 / 77%);
      font-size: 11px;
      display: flex;
      align-items: center;
      font-weight: 700;
  }
  /* конец карточки товара в рекомендованных */




    
    


    iframe#dynamic-iframe {
        border-radius: 12px;
    }
    

  #iframe-content-messager {
        position: absolute;
        top: 50%;
        left: 50%;
        border-radius: 12px;
        transform: translate(-50%, -50%);
        width: 80%;
        height: 80%;
        background-color: #fff;
        border: 1px solid #ccc;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

div#iframe-content-messager button {
      width: 33px;
      position: absolute;
      right: 5px;
      top: 5px;
      padding: 5px;
      font-size: 18px;
      text-transform: uppercase;
      font-weight: 700;
      display: flex;
      justify-content: center;
      align-items: center;
      color: rgb(239, 248, 253);
      border-radius: 8px;
      text-align: center;
      outline: none;
      cursor: pointer;
      box-sizing: border-box;
      background-color: var(--color-bg-box-subsecondary);
      border: var(--color-box-border-subsecondary);
      border-top-color: var(--color-box-border-top-subsecondary);
      box-shadow: var(--box-shadow-externa-subsecondary);
      background-image: var(--bg-image-gradient);
}

div#iframe-content-messager button:hover {
  width: 33px;
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 5px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(0, 0, 0);
  border-radius: 8px;
  text-align: center;
  outline: none;
  cursor: pointer;
  box-sizing: border-box;
  background-color: var(--color-bg-box-subsecondary);
  border: var(--color-box-border-subsecondary);
  border-top-color: var(--color-box-border-top-subsecondary);
  box-shadow: var(--box-shadow-externa-subsecondary);
  background-image: var(--bg-image-gradient);
}

form#product-form {
  padding: 15px;
  display: flex;
  width: 100%;
  gap: 15px;
  flex-wrap: wrap;
}
span.required-input {
  color: red;
}

.prices_unit-body {
  display: flex;
  width: 100%;
  align-items: flex-end;
  gap:15px
}
.unit_fixed-arrow {
  display: flex;
  height: 40px;
  font-size: 27px;
  align-items: center;
  justify-content: center;
}
.unit_cnt-body, .received_units-body {
  width: calc(50% - 10px);
}

input#unit_cnt_input, input#received_units, ul.option-body input[type=text] {
  all: unset;
  width: calc(100% - 30px);
  max-width: 100%;
  background: #fff;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px #c2c5d6;
  color: #1d2230;
  font-weight: 400;
  line-height: 150%;
  padding: 0 12px;
  transition: all .3s;
  height: 40px;
  box-shadow: var(--box-shadow-interna);
  background-color: var(--color-bg-box-secondary);
}
 input#unit_cnt_input, input#received_units, ul.option-body input[type=text]:focus{
  box-shadow: inset 0 0 0 1px #266ac3;
}

.received_units-text, .unit_cnt-text {
  margin-bottom: 5px;
}
.unit_fixed-body {
  display: flex;
  width: 100%;
  gap: 15px;
  align-items: center;
}
.unit_fixed-text {
  max-width: 100%;
}
select#unit_fixed_select {
  max-width: 100%;
  background: #fff;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px #c2c5d6;
  color: #1d2230;
  font-weight: 400;
  line-height: 150%;
  font-size: 16px;
  padding: 0 12px;
  transition: all .3s;
  height: 40px;
  box-shadow: var(--box-shadow-interna);
  background-color: var(--color-bg-box-secondary);
}
ul.option-body {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  row-gap: 10px;
}

label.option-title {
  width: 100%;
  color: #1d2230;
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
}

label.option-text span {
  color: black;
  line-height: normal;
}

li.option-variant {
  display: flex;
  padding: 0;
  margin: 0;
  transition: all .25s;
  width: calc(50% - 4px);
}

label.option-input span input {
  position: relative;
    border-radius: 50%;
    margin-right: 6px;
    height: 20px;
    width: 20px;
    cursor: pointer;
}

label.option-text {
  cursor: pointer;
}


.seller-raiting {
  grid-area: RNAME;
  padding: 5px 5px 0px 5px;

}
.seller-raiting-text {
  grid-area: RNUMB;
  display: flex;
  gap: 5px;
  padding-left: 10px;
  align-items: center;
}
.product-info-type-name, .product-info-platform-name, .sells-name, .refunds-name {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 25px;
  box-shadow: var(--box-shadow-interna);
  background: var(--color-bg-box-secondary);
  border: var(--color-box-border);
  border-radius: 8px;
}
button.message-seller {
  grid-area: BUY;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eff1f6;
  border-radius: 8px;
  color: #000000;
  cursor: pointer;
  font-size: 16px;
  line-height: 150%;
  padding: 0 12px;
  transition: all .3s;
  height: 40px;
  width: 100%;
  border-color: rgba(0, 0, 0, 0.075);
}
button.message-seller:hover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eff1f6;
  border-radius: 8px;
  color: #000000;
  cursor: pointer;
  font-size: 16px;
  line-height: 150%;
  padding: 0 12px;
  transition: all .3s;
  height: 40px;
  width: 100%;
  border-color: rgb(0 0 0 / 28%);
}
.good-container-product {
  word-break: break-word;
  padding: 15px;
}

@media (max-width: 600px) {
  .prices_unit-body {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    
  }
  .unit_fixed-arrow {
    transform: rotate(90deg);
}
  .unit_cnt-body, .received_units-body {
    width: 100%;
}
.unit_fixed-body {
  width: 100%;
  display: flex;
  flex-wrap: wrap;}
  select#unit_fixed_select {
    width: 100%;
  }
  }
@media (max-width: 700px) {
  li.option-variant {
    display: flex;
    padding: 0;
    margin: 0;
    transition: all .25s;
    width: 100%;
  }
}
@media (max-width: 500px) {
  .product-name {
    font-size: 24px;
  }
}

  @media (max-width: 900px) {
    .product-body {
      grid-template-columns: 260px auto;
      grid-template-areas:
            "N N N"
            "SL I I"
            "SL SEL SEL"
            "B B B"
            "G G G"
            "O O O"
            "tabs tabs tabs";
    
    }
    .product-info-seller {
      grid-template-areas:
          "TITLE NAME"
          "RNAME RNUMB"
          "BUY BUY";
  }
  }
  @media (max-width: 600px) {
    .product-body {
      grid-template-areas:
            "N N N"
            "SL I I"
            "SL I I"
            "SEL SEL SEL"
            "B B B"
            "G G G"
            "O O O"
            "tabs tabs tabs";
    
    }
    
    .product-info-bottom {
      grid-area: I;
      display: grid;
      max-width: 100%;
      gap: 5px;
      background: var(--color-bg-box);
      border: var(--color-box-border);
      box-shadow: var(--box-shadow-externa);
      border-radius: 8px;
      grid-template-rows: 23px 30px 23px 30px 23px 30px 23px 30px;
      padding: 5px 10px 5px 10px;
      grid-template-areas:
          "TYPE-T"
          "TYPE-V"
          "PLAT-T"
          "PLAT-V"
          "SEL-T"
          "SEL-V"
          "REF-T"
          "REF-V";
  }
  .product-info-type-name, .product-info-platform-name, .sells-name, .refunds-name {
    
    padding-left: 10px;
}
  }

  @media (max-width: 425px) {
    .product-body {
      grid-template-columns: 100%;
      grid-template-areas:
      "N"
      "SL"
      "I"
      "SEL"
      "B"
      "G"
      "O"
      "tabs";
  }
  .product-info-bottom {
    grid-template-rows: 20px 30px 20px 30px;
    grid-template-areas:
        "TYPE-T PLAT-T"
        "TYPE-V PLAT-V"
        "SEL-T REF-T"
        "SEL-V REF-V";
  }
  
    }
 

  
/* Табы ajax */
.tabs-product-page {
  grid-area: tabs;
  gap: 5px;
  display: flex;
  max-width: 100%;
  float: left;
  list-style: none;
  background: var(--color-bg-box);
  border-radius: 12px;
  padding: 5px;
  border: var(--color-box-border);
  box-shadow: var(--box-shadow-externa);
  flex-wrap: wrap;
}
.tab-product-content {
  position: relative;
  display: grid;
  min-width: 320px;
  float: left;
  width: 100%;
  border-radius: 8px;
  font-weight: 600;
  padding: 5px;
  line-height: normal;
  text-transform: none;
  background-position: right center;
  text-decoration: none;
  box-shadow: var(--box-shadow-interna);
  background: var(--color-bg-box-secondary);
  border: var(--color-box-border);
}
.tab-active {
  background-repeat: no-repeat;
  text-decoration: none;
  box-shadow: var(--box-shadow-interna);
  background-color: rgb(239 241 246);
  border-color: #5ba7e1;
  border-width: 3px;
  border-radius: 8px;
}
.tab-product {
  display: flex;
  font-weight: 700;
  font-size: 20px;
  gap: 8px;
  float: left;
  width: calc(50% - 5px);
  text-decoration: none;
  text-align: center;
  line-height: 2;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}
.tab-product:hover {
  border-color: #5ba7e1;
  border-width: 3px;
  border-radius: 8px;
  background-color: rgb(239 241 246);
}

/* пагинация */
div.pagination-product-page {
  grid-area: pagin-up;
}
div.pagination-product-page-bottom, div.pagination-product-page {
  height: 30px;
  width: 100%;
  gap: 4px;
  display: flex;
  justify-content: flex-end;
}
div.pagination-product-page-bottom {
  grid-area: pagin-bottom;
}

/* конец пагинации */



#iframe-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Полупрозрачный фон для оверлея */
  z-index: 1000; /* Поверх всех элементов */
  display: none; /* Начнет скрытым */
}

#iframe-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; /* Ширина iframe */
  height: 80%; /* Высота iframe */
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Добавляем стили для слайдера и изображений */
.product-slider {
  position: relative;
  width: 250px;
  max-height: 250px;
  overflow: hidden;
  grid-area: SL;
  background: var(--color-bg-box);
  border: var(--color-box-border);
  box-shadow: var(--box-shadow-externa);
  padding: 5px;
  border-radius: 7px;
}
.product-slider-container {
  width: 250px;
  max-height: 260px;
  overflow: hidden;

}
.product-slider-container .slick-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 250px;
}

.product-slider-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-slider-container .slick-list {
  overflow: hidden;
}







@media (max-width: 425px) {
  .product-slider {
    width: 100%;
    max-width: calc(100% - 10px);
    max-height: 100%;
  }
  .product-slider-container {
    width: 100%;
  }
  .product-slider-container {
    max-height: 100%;
    overflow: hidden;
  }
  /* .product-slider-container .slick-slide {
    height: 100%; 
  } */
}

.error-highlight {
  border: 0.5px solid red!important; /* Подсветка красной рамкой */
  background-color: #ffe6e6!important; /* Легкий красный фон для улучшения видимости */
}

span#unit_price {
  color: black;
}
span.product-marketplace {
  height: 30px;
  width: 30px;
  top: 0px;
  margin: 10px;
  right: 0px;
  position: absolute;
  transition: all .3s;
  padding: 0.5em 0.5em;
  text-decoration: none;
  color: #444;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
  border-radius: 12px;
  box-shadow: var(--box-shadow-interna);
  background-color: var(--color-bg-box-secondary-1);
}
span.product-marketplace img {
  height: 30px;
  cursor: pointer;
}

.garant {
  font-weight: 500;
  display: flex;
  grid-area: G;
  padding: 7px 10px 7px 10px;
  gap: 10px;
  align-items: center;
  background: var(--color-bg-box);
  border: var(--color-box-border);
  box-shadow: var(--box-shadow-externa);
  max-width: 100%;
  border-radius: 8px;
}

.similar_block_title {
  width: 100%;
  display: flex;
  padding: 5px 5px 10px 5px;
  font-weight: 600;
  font-size: larger;
  align-items: center;
  justify-content: center;
}
.similar_block {
  display: flex;
  grid-area: G;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  background: var(--color-bg-box);
  border: var(--color-box-border);
  box-shadow: var(--box-shadow-externa);
  flex-wrap: wrap;
}
.similar_block_container {
  width: 100%;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-template-rows: min-content;
  display: grid
;
}
.similar_product_container {
  display: grid;
  width: 100%;
  position: relative;
  background: var(--color-bg-box-secondary);
  border-radius: 8px;
  grid-template-columns: 100px auto;
  grid-template-areas: "img info";
}
.similar_product_container a {
  position: absolute;
  height: 100%;
  width: 100%;
}
.similar_product_container a:hover {
  background: #eda62721;
  transition: all 0.3s;
  border-radius: 8px;
}
.similar_product_img {
  grid-area: img;
  height: 100px;
}
.similar_product_img img {
  border-radius: 8px 8px 8px 8px;
}
.similar_product_info {
  grid-area: info;
  display: flex;
  flex-wrap: wrap;
}
.similar_product_title {
  font-weight: 600;
  display: flex;
  padding: 5px;
  height: 50%;
  width: 100%;
  align-items: flex-start;
}
.similar_product_title a {
  color: black;
  font-weight: 500;
}

.similar_product_price {
  display: flex;
  max-height: 50%;
  font-size: larger;
  box-sizing: border-box;
  font-weight: 600;
  width: 100%;
  padding-right: 10px;
  gap: 5px;
  align-items: center;
  justify-content: flex-end;
}

.similar_product_price span {
  font-size: large;
  font-weight: 600;
  color: black;
}

.option_comment {
    display: flex;
    width: auto;
    font-size: medium;
    font-weight: 400;
    padding: 6px;
    align-items: center;
}

select.select_options {
  padding: 6px 5px 6px 10px;
  font-size: medium;
  border-radius: 8px;
  box-sizing: border-box;
  max-width: 100%;
  width: 100%;
  display: flex;
}

.product_categories {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  max-width: 100%;
  font-weight: 500;
  margin-bottom: 10px;
  margin-top: 10px;
}
.product_categories_text {
  padding: 7px 10px 7px 10px;
  align-items: center;
  background: var(--color-bg-box);
  border: var(--color-box-border);
  box-shadow: var(--box-shadow-externa);
  max-width: 100%;
  border-radius: 8px;
}
.product_categories a {
  gap: 4px;
  color: black;
  display: flex;
  align-items: center;
  padding: 7px;
  background: var(--color-bg-box);
  border: var(--color-box-border);
  box-shadow: var(--box-shadow-externa);
  max-width: 100%;
  border-radius: 8px;
  justify-content: center;
}

.product_categories a:hover {
  box-shadow: 0px 4px 20px 10px rgb(0 0 0 / 7%);
  transition: all 0.3s;
}


.digiseller-consult-online{
  position: fixed!important;
  bottom: 0;
  right: 25px;
  z-index: 1000; 
}

.digiseller-alert-box {
display: flex;
gap: 9px;
height: 26px;
width: 183px;
font-size: 14px;
background-image: var(--bg-image-gradient);
font-weight: 600;
padding: 5px 10px 5px 10px;
transition: opacity 300ms ease-out;
color: #FFFFFF;
cursor: pointer;
position: relative;
background-color: #3c8ace;
border-right: 1px solid #547EA5;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
flex-wrap: nowrap;
align-items: center;
}
.digiseller-alert-box:hover {
color: aquamarine;
}