:root {
    --primary-color: #c55024;
    --text-light-color: #ffffff;
    --text-dark-color: #29213a;
    --font-family: 'Gilroy', sans-serif;
    --font-size-s: 18px;
    --font-size-m: 22px;
    --font-size-l: 36px;

    --table-font-size-l: 28px;
    --table-font-size-m: 18px;
    --table-font-size-s: 16px;

    --mobile-font-size-l: 18px;
    --mobile-font-size-m: 14px;
    --mobile-font-size-s: 12px;
}

.span-primary {
    color: var(--primary-color);
}


.category-header {
    border-top: 2px solid var(--primary-color);
}
.category-header-text {
    font-family: var(--font-family);
    color: var(--text-dark-color) !important;
    font-weight: 700;
    font-size: var(--font-size-m);
    line-height: 115.99999999999999%;
    letter-spacing: 0.05;
    text-transform: uppercase;
}
.category-subheader-text {
    margin-top: 5px;
}

.category-header-cell {
    min-height: 60px;
}

.name-columns{
    width: 40%;
}

.category-description {
    color: var(--text-dark-color);
    font-family: var(--font-family);
    font-weight: 500;
    font-size: var(--font-size-s);
    line-height: 115.99999999999999%;
    letter-spacing: 0;
    border-top: 2px solid var(--primary-color);
    min-height: 100px;
}
.pozitive-header {
    font-size: var(--font-size-l) !important;
}


.table-header .category-header{
    border-top: none;
}
.table-header .category-header th {
    font-family: var(--font-family);
    
    font-weight: 700;
    font-size: var(--font-size-m);
    line-height: 115.99999999999999%;
    letter-spacing: 0.05;
    text-transform: uppercase;
    
}

.table-text-right{
    text-align: right;
    
}
.price-cell {
    text-align: center;
    font-weight: 500;
}

.price-badge {
    font-family: var(--font-family);
    display: inline-block;
    padding: 5px 6px;
    font-weight: 500;
    background-color: var(--primary-color);
    color: var(--text-light-color);
    min-width: 70px;
}

.price {
    font-family: var(--font-family);
    display: inline-block;
    padding: 5px 6px;
    font-weight: 500;
    /* background-color: var(--primary-color);
    color: var(--text-light-color); */
    min-width: 70px;
}
.table-title {
    color: var(--text-dark-color);
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Обрезка текста в weekday-label - th сохраняет табличное отображение, span обрезает текст */
.weekday-label {
    display: table-cell !important; /* Сохраняем табличное отображение для th */
}

/* Обрезка применяется к span внутри th */
.weekday-label > span {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    line-height: 1.2;
    word-break: normal; /* Позволяем перенос по словам, но не ломаем слова */
    white-space: normal; /* Разрешаем перенос строк */
    max-width: 100%; /* Ограничиваем ширину */
    width: 100%;
    text-align: inherit; /* Наследуем выравнивание от родителя */
    /* Важно: -webkit-box-orient требует display: -webkit-box для работы */
    /* Многоточие появится автоматически когда текст не влезает в 2 строки */
}



.premium-table {
    margin-top: 80px;
}
  
  /* Блок залога */
  .deposit-block {
    margin-top: 80px; /* Большой отступ сверху */
    padding-top: 40px;
  }
  
  .deposit-card {
    /* border-left: 4px solid var(--primary-color); */
    border-radius: 0; /* Убрали закругление углов */
  }
  
  .deposit-title {
    color: var(--text-dark-color);
    font-weight: 700;
    font-family: var(--font-family);
    font-size: var(--font-size-m);
  }
  
  .deposit-subtitle {
    color: var(--text-dark-color);
    font-weight: 600;
    font-family: var(--font-family);
  }
  
  .deposit-bullet {
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  

  
  .deposit-amount {
    font-family: var(--font-family);
  }
  
  .deposit-price {
    font-size: var(--font-size-l);
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap; /* Цена в одну строку */
    display: inline-block;
  }
  
  .deposit-list {
    list-style-type: none;
    padding-left: 0;
  }
  
  .deposit-list-item {
    position: relative;
    padding-left: 24px;
    font-family: var(--font-family);
    font-size: var(--font-size-s);
    line-height: 1.6;
  }
  
  .deposit-list-marker {
    position: absolute;
    left: 0;
    color: var(--primary-color);
  }
  
  .deposit-note {
  
    width: 100%;
  }
  
  .deposit-note-icon {
    color: var(--primary-color);
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
  }
  
  .deposit-note-text {
    font-family: var(--font-family);
    font-weight: 500;
    color: var(--text-dark-color);
    font-size: var(--font-size-s);
  }
  
  .deposit-bullet-text {
    color: white;
    font-weight: bold;
    font-size: 14px;
  }


  @media (max-width: 1200px) {
   
   

    .category-header-text {
        font-size: var(--table-font-size-m)!important;
    }
    
    .table-header .category-header th {
        font-size: var(--table-font-size-m)!important;
    }
    .category-description {
        font-size: var(--table-font-size-s);
    }
    .prokat-page .table-header .pozitive-header {
        font-size: var(--table-font-size-l) !important;
    }

    .price-cell .d-flex{
        flex-direction: column;
        align-items: flex-end !important;
    }
    .price-table .table > :not(caption) > * > * {
        padding: 0.625rem 0.25rem;
    }

    .price-badge {
        min-width: 50px;
    }
    .price {
        min-width: 50px;
    }

    .name-columns{
        width: 35%;
    }

    .deposit-title {
        font-size: var(--table-font-size-m);
      }

      .deposit-price {
        font-size: var(--table-font-size-l);
      }
      
      
      
      .deposit-list-item {
        font-size: var(--table-font-size-s);
      }

      .deposit-note-text {
        font-size: var(--table-font-size-s);
      }
}

@media (max-width: 600px) {
   
   

    .category-header-text {
        font-size: var(--mobile-font-size-m)!important;
    }
    
    .table-header .category-header th {
        font-size: var(--mobile-font-size-m)!important;
    }
    .category-description {
        font-size: var(--mobile-font-size-s);
    }
   

    .prokat-page .table-header .pozitive-header {
        font-size: var(--mobile-font-size-l) !important;
    }

    .price-cell .d-flex{
        flex-direction: column;
        align-items: flex-end !important;
    }
    .price-table .table > :not(caption) > * > * {
        padding: 0.625rem 0.25rem;
    }

    .price-badge {
        min-width: 60px;
    }
    .price {
        min-width: 60px;
    }

    .name-columns{
        width: 33%;
    }

    .deposit-title {
        font-size: var(--mobile-font-size-m);
      }

      .deposit-price {
        font-size: var(--mobile-font-size-l);
      }
      
      
      
      .deposit-list-item {
        font-size: var(--mobile-font-size-s);
      }

      .deposit-note-text {
        font-size: var(--mobile-font-size-s);
      }

      .hidden-mobile-text {
        display: none;
    }
}
/* @media (max-width: 500px) {
 

    .hidden-mobile-text {
        display: none;
    }
} */