html, body{
    margin: 0;
    padding: 0;
    background-color: #fff;
}

body.no-scroll {
    overflow: hidden; /* Блокируем прокрутку */
  }

.product-container {
    max-width: 1400px;
    margin: 0 auto; 
    display: flex; 
    flex-wrap: wrap; 

}

.product-container__left,
.product-container__right {
    flex: 1; 
    width: 50%; 
    margin: 0;
    padding: 0;
    align-self: center;
}


.product-container__right{
    border-radius: 0 0 0 80px;
}

.product-view__descr{
    padding: 85px;
}

.product-view__subtitle {
    font-size: 14px;
    color: #6C757D;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.product-view__header {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
}

.reviews-rating__wrapper{
    display: flex;
    align-items: center;
    gap: 10px;
}

.leave-review:hover {
    color: blue;
    text-decoration: underline;
}

.product-view__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 16px;
}
.product-view__rating .rating{
    font-weight: 500;
    display: flex;
    align-items: center;
}

.product-view__rating .rating:before {
    content: '';
    display: inline-block;
    width: 14px; /* Размеры SVG */
    height: 14px; /* Размеры SVG */
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="15" viewBox="0 0 16 15" fill="none"><path d="M14.7762 7.02746L11.9097 9.51691L12.7842 13.2408C12.8324 13.443 12.82 13.655 12.7484 13.85C12.6769 14.0451 12.5495 14.2145 12.3823 14.3368C12.215 14.459 12.0155 14.5288 11.8089 14.5371C11.6023 14.5454 11.3979 14.492 11.2214 14.3836L8.00026 12.3905L4.7772 14.3836C4.60079 14.4914 4.3966 14.5443 4.19034 14.5357C3.98408 14.527 3.78497 14.4572 3.6181 14.335C3.45122 14.2128 3.32403 14.0438 3.25255 13.849C3.18106 13.6543 3.16848 13.4427 3.21638 13.2408L4.09406 9.51691L1.22373 7.02682C1.06764 6.89119 0.954762 6.71234 0.899178 6.5126C0.843594 6.31286 0.847772 6.10109 0.91119 5.90372C0.974608 5.70635 1.09446 5.53214 1.25577 5.40285C1.41708 5.27355 1.6127 5.1949 1.81821 5.17672L5.58153 4.87147L7.03328 1.33929C7.11186 1.14679 7.2456 0.982126 7.4175 0.866239C7.58941 0.750353 7.7917 0.688477 7.99867 0.688477C8.20564 0.688477 8.40793 0.750353 8.57983 0.866239C8.75174 0.982126 8.88548 1.14679 8.96406 1.33929L10.4152 4.87147L14.1785 5.17672C14.3844 5.19423 14.5806 5.27244 14.7425 5.40156C14.9044 5.53067 15.0248 5.70495 15.0886 5.90256C15.1524 6.10016 15.1568 6.31231 15.1012 6.51241C15.0457 6.71251 14.9326 6.89168 14.7762 7.02746Z" fill="%23FFC107"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 5px;
}

.product-view__rating .reviews {
    color: #9BA2A9;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.product-view__rating .reviews:hover {
    text-decoration: underline;
}

.product-view__rating .reviews:after {
    content: ''; 
    display: inline-block; 
    height: 13px; 
    border-right: 1px solid #9BA2A9;
    margin-left: 10px;
}

.product-view__info{
    margin-bottom: 24px;
}

.product-view__info p {
    display: flex;
    gap: 24px;
}

.product-view__info .label {
    min-width: 100px; 
    margin-right: 10px; 
}

.product-view__info strong {
    flex-shrink: 0;
}

.product-view__dimensions {
    width: 360px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #CED4DA;
    border-radius: 8px;
    padding: 10px;
    background-color: #FFFFFF;
    font-size: 14px;
    color: #555;
}

.dimension-item {
    display: flex;
    /* justify-content: center; */
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.dimension-item:not(:last-child) {
    border-right: 1px solid #e0ddd9;
}

.dimension-item strong {
    font-size: 14px;
    color: #6C757D;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.dimension-item span{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.dimension-value {
    font-size: 28px;
    font-weight: 500;
    color: #495057;
}

.dimension-unit{
    font-size: 16px;
    font-weight: 500;
}

.product-view__description {
    font-size: 16px;
    color: #495057;
    margin: 20px 0;
}

.product-view__price {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 48px;
    font-weight: 500;
}

.old-price {
    text-decoration: line-through;
    color: #AFB7BF;
}

.new-price {
    color: #106B7D;
}

.product-view__actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.buy-button,
.wishlist-button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.buy-button {
    background-color: #1E8194;
    color: #fff;
    font-weight: 500;
    border-radius: 40px;
    width: 245px;
}

.wishlist-button {
    background-color: transparent;
    color: #000000;
    font-weight: 500;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    line-height: 17px;
}


.wishlist-button:hover .wishlist-icon path {
    fill: #DC3545; /* Змінюємо колір на червоний при наведенні */
}

.wishlist-button.active .wishlist-icon {
    fill: #DC3545; /* Змінюємо колір на червоний при натисканні */
}

.product-color {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 16px;
}

.color-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    margin-right: 10px; /* Отступы между кругами */
    cursor: pointer;
}


.counter-container {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
}

.counter-button {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    border: 1px solid #212529;
    background-color: #FFFFFF;
    color: #212529;
    transition: background-color 0.2s;
}

.counter-button:hover {
    background-color: #495057;
    color: white;
}

.counter-button.plus {
    background-color: #212529;
    color: #fff;
}

.counter-button.plus:hover {
    background-color: #495057;
}

.counter-value {
    font-size: 18px;
}

.product-container__left {
    display: flex;
    flex-direction: column; 
    align-content: center;
    gap: 20px;             
}

.product-view__img {
    display: flex;
    align-self: center;
    
}

.product-view__img img {
    width: 367px;            
    height: 367px;
}


.product-tabs__wrapper {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
}

.product-tabs {
    width: 1200px;
    padding: 20px;
    background-color: #fefefe;
}

.tabs-header {
    display: flex;
    margin-bottom: 90px;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.tab {
    cursor: pointer;
    font-size: 24px;
    font-weight: 500;
    color: #AFB7BF;
}

.tab.active {
    color: #1E8194;
    border-bottom: 3px solid #1E8194;
}

.tabs-content {
    position: relative;
}

.tab-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.tab-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

table {
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
}

td:first-child {
    text-align: left;
    width: 50%;
    font-weight: 500;
}

td:last-child {
    text-align: right;
    font-weight: 300;
}

#specs table {
    border-spacing: 0 50px;
    border-collapse: separate;
}

.review {
    margin-top: 44px;
    background-color: #F8F9FA;
    border-radius: 20px;
}

.reviews-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.reviews-header span {
    color: #6C757D;
}

#reviews > p > a{
    text-decoration: none;
    color: #1E8194;
    font-weight: 500;
}

.reviews-header-stars {
    display: flex;
    gap: 24px;
}

.reviews-header-stars__items > span > svg path {
    fill: #FFC107;
  }

.reviews-header {
    display: flex;
    justify-content: space-between;
}

.reviews-header-stars__items {
    display: flex;
    align-items: center;
    gap: 5px;
}

.reviews-header-stars__counter {
   font-size: 14px;
   line-height: 18px;
   margin-left: 5px;
}

.reviews-header__btn {
    background-color: #fff;
    color: #1E8194;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #1e8194;
    border-radius: 41px;
    padding: 6px 14px;
}

.reviews-header__btn:hover{
    background-color: #1e8194;
    color: white;
}
.reviews-header__btn:hover svg path{
    fill: white;
}


.heart-icon.liked {
    fill: #212529;
}

.heart-icon{
    cursor: pointer;
}

.heart-icon:hover {
    fill: #212529;
}

.review-header{
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    background-color: #DEE2E6;
    border-radius: 20px 20px 0 0;
}

.review-product__rating,
.review-store__rating {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.review-rating{
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid #DEE2E6;
}

.review-text {
    font-size: 14px;
    max-height: 50px;      
    overflow-y: auto;
    margin: 16px 24px; 
    padding-right: 1px;   
}

.review-text::-webkit-scrollbar {
    width: 4px;
    height: 18px;
}

.review-text::-webkit-scrollbar-thumb {
    background-color: #ACAEB1;
    border-radius: 4px;
}

.review-text::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.review-text::-webkit-scrollbar-track {
    background: #f1f1f1;
    
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px 24px 24px;
}

.order-more-content{
    background-color: #DC3545;
    border-radius: 41px;
    color: #fff;
    padding: 8px 16px;
}

.info-section {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    gap: 20px;
    margin-top: 70px;
  }
  
  .info-card {
    text-align: center;
    background-color: #DEE2E6;
    border-radius: 25px;
    width: 33%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
  }
  
  .info-card .icon {
    margin-bottom: 10px;
    width: 42px;
    height: 61px;
    background-color: #1E8194;
    border-radius: 0 0 100px 100px;
    margin: 0 auto;
    padding-top: 30px;
    padding-left: 8px;
  }
  
  .info-card h4 {
    font-size: 24px;
    color: #106B7D;
    margin-top: 16px;
    font-weight: 500;
  }
  
  .info-card p {
    font-size: 16px;
    color: #6C757D;
    margin: 21px 0;
  }
  
  .info-card:hover {
    transform: scale(1.05);
    background-color: #106B7D;
    color: #fff;
  }
  
  .info-card:hover h4,
  .info-card:hover p {
    color: #fff;
  }

  .viewed-products-section,
  .suggested-products-section {
      max-width: 1150px; /* Убедитесь, что это одинаково */
      margin: 0 auto;
      margin-top: 70px;
      position: relative;
      box-sizing: border-box;
  }
.viewed-products-section h2{
    font-weight: 500;
    text-align: center;
}

.viewed-products-section > a {
    display: block;
    margin-top: 20px;
    text-align: center;
    margin-bottom: 20px;

}

.suggested-products-section h2 {
    font-weight: 500;
    text-align: center;
}

.suggested-products-section > a{
    display: block;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.viewed-products-wrapper,
.suggested-products-wrapper {
    display: flex;
    padding: 20px;
    gap: 30px; /* Учитываем отступы между элементами */
    box-sizing: border-box;
}


.viewed-products-wrapper .swiper-slide,
.suggested-products-wrapper .swiper-slide {
    flex: 0 0 calc(25% - 20px);  
    box-sizing: border-box;
}

.viewed-products-next,
.viewed-products-prev,
.suggested-products-next,
.suggested-products-prev {
    position: absolute;
    top: 50%; 
    transform: translateY(-50%);
    z-index: 10; 
    cursor: pointer;
    width: 40px; 
    height: 40px; 
}

.viewed-products-next,
.suggested-products-next{
    right: -50px;
}

.viewed-products-prev,
.suggested-products-prev {
    left: -50px;
}

/* Modal window ===============================*/

  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
  }

  .review-modal-wrapper {
    padding: 30px;
    background-color: #fff;
    border-radius: 20px;
    width: 50%;
  }
  
  .modal-content {
    background: white;
    padding: 0 20px 0 0;
    border-radius: 5px 5px 5px 5px;
    max-height: 90vh; /* Ограничение по высоте относительно высоты окна */
    overflow-y: auto; /* Прокрутка внутри окна */
    position: relative;
    border: none;
  }

  .modal-content h2 {
    font-weight: 500;
  }

  /* Стилизация полосы прокрутки */
.modal-content::-webkit-scrollbar {
    width: 8px; /* Ширина полосы прокрутки */
  }
  
  .modal-content::-webkit-scrollbar-thumb {
    background-color: #1E8194;
    border-radius: 4px;
  }
  
  .modal-content::-webkit-scrollbar-thumb:hover {
    background-color: #145a66;
  }
  
  .modal-content::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 4px;
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
  }

.modal-content > form > .rating {
    margin-top: 24px;
    padding: 24px 0;
    border-top: 1px solid rgba(155, 162, 169, 0.5);
    border-bottom: 1px solid rgba(155, 162, 169, 0.5);
  }
  
  .rating .stars {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
  }

  .rating .stars span {
    color: #9BA2A9;
    font-size: 20px;
  }
  
  .rating .stars label svg path {
    font-size: 30px;
    cursor: pointer;
    transition: fill 0.2s ease-in-out;
  }
  
  .rating .stars input {
    display: none;
  }
  

  .rating .stars input:checked ~ label svg path,
  .rating .stars input:hover ~ label svg path {
    fill: gold;
  }
  
  .rating .stars input:checked ~ label svg path {
    fill: gold;
  }

  .leave-comment {
    margin-top: 24px;
  }

  .textarea-wrapper {
    position: relative;
    width: 100%;
    height: 124px;
    border: 1px solid rgba(155, 162, 169, 0.5);
    border-radius: 23px;
    overflow: hidden;
    padding-right: 20px;

  }
  
 textarea {
  width: 100%;
  height: 100%;
  margin: 0;
  border: none;
  border-radius: 23px;
  padding: 16px;
  resize: none;
  overflow-y: auto;
  outline: none;
}
  
  textarea::placeholder {
    color: #9BA2A9;
  }
  
  .textarea-wrapper:focus-within {
    border-color: #B9EAF3;
    outline: none;
  }

textarea::-webkit-scrollbar {
    width: 6px;
    border-radius: 10px;
  }
  
  textarea::-webkit-scrollbar-thumb {
    background-color: #9ba2a9;
    border-radius: 10px;
  }
  
  textarea::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 10px;
  }
  
  .character-count {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #9BA2A9;
  }
  
  .character-count span {
    color: #009688; 
  }
  
  .file-upload-container {
    border-radius: 10px;
    padding: 20px;
    max-width: 100%;
    margin: 20px auto;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(155, 162, 169, 0.5);
    border-radius: 23px;
    gap: 30px;
  }

  .drag-area {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    text-align: left;
  }

  .upload-button {
    background-color: #106B7D;
    color: white;
    padding: 8px 12px;
    width: 200px;
    border-radius: 20px;
  }
  .file-input {
    display: none;
  }
  .modal-name-surname,
  .modal-email {
    display: flex;
    flex-direction: column;
  }

  .modal-email {
    margin-top: 24px;
  }

  .modal-name-surname input,
  .modal-email input {
    border: 1px solid #CED4DA;
    padding: 8px 16px;
    border-radius: 100px;
}

.modal-checkboxes{
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;

}

.modal-checkboxes input {
    margin-right: 6px;
    vertical-align: middle;
}

.modal-checkboxes input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid #CED4DA;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    cursor: pointer;
    align-items: center;
}

.modal-checkboxes input[type="checkbox"]:hover {
    border: 3px solid #62ABB9;
}

/* Active (checked) state with background image */
.modal-checkboxes input[type="checkbox"]:checked {
    background-color: #106B7D; /* Brand color for checked state */
    border-color: #106B7D;
    background-image: url('../../image/check1.png'); /* путь к изображению галочки */
    background-size: 12px 12px; /* размер изображения галочки */
    background-position: center;
    background-repeat: no-repeat;
}
  
  .actions {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 20px;
    font-weight: 500;
    margin: 16px 0;
  }

.actions .cancel,
.actions .submit {
    flex: 1;
    padding: 16px 24px;
    line-height: 20px;
    border-radius: 41px;
}
  
  .actions .cancel, 
  .actions .submit {
    background-color: #FFFFFF;
    color: #1E8194;
    border: 1px solid #1E8194;
    transition: fill 0.2s ease-in-out;
  }
  
.actions .cancel:hover,
.actions .submit:hover{
    background-color: #1E8194;
    color: #FFFFFF;
}

.product-view__descr .alert-info {
    margin-top: 20px;
}

  
/* Modal window ===============================*/



.mySwiper, .mySwiper2 {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.swiper-thumbnails, .main-swiper-img {
    background-size: cover;
    background-position: center;
}


.mySwiper2 {
    height: 40%; 
    width: 100%;
}

.mySwiper {
    height: 120px; /*20%; */
    box-sizing: border-box;
    padding: 10px 0;
}

.mySwiper .swiper-thumbnails {
    width: 20% !important; 
    height: 100%;
    opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.main-swiper-img img, .swiper-thumbnails img{
    display: block;
    width: 80%;
    height: 100%;
    object-fit: cover; 
}

.main-swiper-img img {
    max-width: 100%;
    height: auto;
    object-fit: contain; 
    margin: auto;
  }
  
  .swiper-thumbnails img {
    max-width: 80%;
    object-fit: contain;
  }

  .rating-error {
    display: none;
  }

  .modal-content > * input:focus{
    outline: none;
    border-color: #B9EAF3;
  }

  input.error {
    border-color: #DC3545; /* Цвет бордера для инпутов с ошибкой */
  }

  .error-message, .rating-error{
    color: #DC3545;
  }

  .reviews-not-auth {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .reviews-not-auth span a {
    color: blue;
  }

  .reviews-no-review {
    display: flex;
    gap: 16px;
    align-items: center;
  }



  @media (max-width: 1440px) {
    .modal-content{
        max-height: 80vh;
    }

    .review-modal-wrapper {
        width: 60%;
    }
  }

  @media (max-width: 1280px) {
    .info-section {
        width: 100%;
    }

    .viewed-products-section,
    .suggested-products-section {
        max-width: none;
        width: 90%;
    }

    .viewed-products-wrapper,
    .suggested-products-wrapper {
        gap: 0;
        padding: 0;
    }

    

    .viewed-products-wrapper .swiper-slide,
    .suggested-products-wrapper .swiper-slide {
        flex: 0 0 auto; 
        height: auto;
    }
    .review-modal-wrapper {
        width: 70%;
    }
  }

  @media (max-width: 1024px) {
    .product-container {
        flex-direction: column;
        align-items: baseline;
        justify-content: baseline;
        margin-top: 80px;
    }
    .product-container__left {
        width: 80%;
    }
     .product-container__right {
        width: 100%;
    }

    .product-view__descr {
        padding: 40px;
    }

    #product-title {
        font-size: 24px;
    }
    .info-card .icon {
        width: 30px;
        height: 46px;
        padding-top: 18px;
        padding-left: 2px;
    }
    .info-card h4 {
        font-size: 18px;
        margin-top: 8px;
    }

    .info-card p {
        margin: 12px 0;
    }
    .viewed-products-section,
    .suggested-products-section {
        max-width: none;
        width: 100%;
    }
    .viewed-products-next,
    .suggested-products-next,
    .viewed-products-prev,
    .suggested-products-prev {
        display: none;
    }
    .viewed-products-wrapper,
    .suggested-products-wrapper {
        gap: 0;
    }

    .viewed-products-wrapper .swiper-slide,
    .suggested-products-wrapper .swiper-slide {
        flex: 0 0 auto; 
        height: auto;
    }

    .modal-content {
        max-height: 80vh;
        max-width: 100%;
    }
    .review-modal-wrapper {
        width: 90%;
    }
    .viewed-products-wrapper,
    .suggested-products-wrapper {
        padding: 0;
        padding-bottom: 20px;
    }
  }

  @media (max-width: 768px){
    .product-view__descr {
        padding: 20px;
    }

    .tab{
        font-size: 14px;
    }

    .tabs-header{
        margin-bottom: 30px;
    }

    #product-title {
        font-size: 18px;
    }
    #product-code{
        font-size: 12px;
    }

    .reviews-header > #product-code {
        width: 100px;
    }

    .reviews-header > #product-title {
        flex: 1;
    }

    .buy-button {
        width: 200px;
    }
    .info-section {
        margin-top: 20px;
        align-items: stretch;
        padding: 12px;
        gap: 10px;
    }
    .info-card h4 {
        font-size: 14px;
        margin-top: 8px;
    }

    .info-card p {
        margin: 12px 0;
        font-size: 12px;
    }

    .viewed-products-wrapper .swiper-slide,
    .suggested-products-wrapper .swiper-slide {
        flex: 0 0 auto; /* 2 карточки в ряду */
    }

    .review-modal-wrapper {
        padding: 12px;
        width: 95%;
    }

    .modal-content h2 {
        font-size: 24px;
    }

    .modal-content > form > .rating {
        margin-top: 12px;
        padding: 12px;
    }

    .rating .stars span {
        font-size: 16px;
    }

    .rating .stars label svg {
        width: 30px;
        height: 30px;
    }

    .actions .cancel, .actions .submit {
        padding: 10px 12px;
    }

    .drag-area {
        width: auto;
    }

    .file-upload-container {
        gap: 10px;
    }

    .upload-text {
        display: none;
    }
    .modal-content {
        padding: 0 10px 0 0;
    }

    .rating .stars {
        padding: 12px;
    }
  }

  @media (max-width: 480px) {
    .product-view__descr {
        padding: 12px;
    }

    .product-tabs__wrapper {
        margin-top: 30px;
    }

    .tabs-header{
        gap: 20px
    }

    .product-view__dimensions {
        width: 100%;
        max-width: 300px;
    }

    .dimension-item {
        padding: 0 20px 0 10px;
    }

    .dimension-item strong {
        font-size: 12px;
    }

    .dimension-value {
        font-size: 18px;
    }

    .product-view__price {
        font-size: 32px;
    }

    .product-view__actions {
        display: flex;
        gap: 10px;
        margin-top: 10px;
    }
    .buy-button, .wishlist-button {
        flex: 1;
        width: 100%;
        font-size: 14px;
        padding: 6px 12px;
    }
    .wishlist-button {
        padding: 0;
        font-size: 12px;
    }
    .product-tabs {
        padding: 12px;
    }

    .tabs-header {
        gap: 12px;
        justify-content: space-between;
    }

    .tab {
        font-size: 12px;
    }

    .tab-content > table{
        font-size: 12px;
    }
    .tabs-content > #description,  .tabs-content > #description h6{
        font-size: 12px;
    }

    .review-rating, .review-header, .review-footer {
        padding: 8px 12px;
    }
    .review-text {
        margin: 8px 12px;
    }

    .order-more-content {
        font-size: 14px;
        padding: 4px 8px;
    }

    .reviews-header__btn{
        padding: 4px 12px;
        font-size: 12px;
    }
    .review {
        margin-top: 24px;
    }

    .info-card {
        border-radius: 12px;
    }

    .info-card h4 {
        font-size: 12px;
    }

    .info-card p {
        font-size: 10px;
    }

    .modal-content > form > .rating {
        padding: 8px 0;
    }

    .rating .stars span {
        font-size: 14px;
    }

    .rating .stars label svg {
        width: 25px;
        height: 25px;
    }

    .textarea-wrapper {
        padding-right: 10px;
        border-radius: 12px;
    }


    .textarea-wrapper textarea {
        padding: 8px;
        border-radius: none;
    }

    .upload-button {
        width: 120px;
        padding: 4px 16px;
        margin-bottom: 0;
    }

    .file-upload-container {
        padding: 10px;
        border-radius: 12px;
    }

    .file-upload-container > * {
        font-size: 14px;
    }

    .actions {
        gap: 8px;
    }

    .actions .cancel, .actions .submit {
        padding: 8px;
        font-size: 14px;
    }

}

@media (min-width: 1025px) {
    .swiper-scrollbar {
        display: none !important;
      }
}

@media (max-width: 1024px) {
    .swiper-scrollbar {
      display: block !important;
    }
  }
  
