
/* Основные стили в стиле 2010 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f0f0f0;
  color: #333;
}

/* Контейнер с фиксированной шириной для десктопа */
.container {
  width: 990px;
  margin: 0 auto;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  overflow: hidden;
}

/* Шапка сайта */
.header {
  background: linear-gradient(to bottom, #4a8bc8, #2a5c8a);
  padding: 20px;
  color: white;
  border-bottom: 3px solid #1a4a7a;
  position: relative;
}

.logo {
  float: left;
  font-size: 28px;
  font-weight: bold;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  color: white;
}

.logo span {
  color: #ffcc00;
}

.header-info {
  float: right;
  text-align: right;
  font-size: 14px;
}

.phone {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.work-time {
  font-size: 12px;
  color: #ccc;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* Поиск и корзина */
.header-bottom {
  background: #333;
  padding: 10px 20px;
  margin-top: 20px;
}

.search-box {
  float: left;
  width: 300px;
}

.search-box input {
  width: 220px;
  padding: 8px;
  border: 1px solid #666;
  border-radius: 3px;
  background: #fff;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.search-box button {
  padding: 8px 15px;
  background: linear-gradient(to bottom, #ffcc00, #ff9900);
  border: 1px solid #e69500;
  border-radius: 3px;
  color: #333;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cart-info {
  float: right;
  background: linear-gradient(to bottom, #6fbf4d, #4a8c28);
  padding: 8px 15px;
  border-radius: 3px;
  border: 1px solid #3a7c18;
  color: white;
  text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.3);
}

/* Навигация - двухуровневое меню */
.nav {
  background: linear-gradient(to bottom, #555, #333);
  border-bottom: 2px solid #222;
  position: relative;
}

.nav-container {
  position: relative;
  max-width: 990px;
  margin: 0 auto;
}

.nav-main {
  list-style: none;
  display: flex;
  justify-content: space-between;
}

.nav-item {
  position: relative;
  flex: 1;
}

.nav-link {
  display: block;
  padding: 12px 10px;
  color: white;
  text-decoration: none;
  border-right: 1px solid #444;
  border-left: 1px solid #666;
  transition: all 0.3s;
  font-size: 14px;
  white-space: nowrap;
  text-align: center;
  width: 100%;
}

.nav-item:first-child .nav-link {
  border-left: none;
}

.nav-item:last-child .nav-link {
  border-right: none;
}

.nav-link:hover {
  background: linear-gradient(to bottom, #666, #444);
  color: #ffcc00;
}

.nav-link.active {
  background: linear-gradient(to bottom, #4a8bc8, #2a5c8a);
  color: white;
}

/* Выпадающее подменю */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(to bottom, #666, #555);
  min-width: 250px;
  border: 1px solid #444;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 1000;
}

/* Для последних элементов - выравнивание по правому краю */
.nav-item:last-child .submenu,
.nav-item:nth-last-child(2) .submenu {
  left: auto;
  right: 0;
}

.nav-item:hover .submenu {
  display: block;
}

.submenu-columns {
  display: flex;
}

.submenu-column {
  flex: 1;
  min-width: 250px;
}

.submenu-title {
  padding: 12px 20px;
  background: linear-gradient(to bottom, #777, #666);
  color: #ffcc00;
  font-weight: bold;
  font-size: 14px;
  border-bottom: 1px solid #555;
}

.submenu-title a {
  padding: 0;
}

.submenu-list {
  list-style: none;
}

.submenu-item {
  border-bottom: 1px solid #555;
}

.submenu-item:last-child {
  border-bottom: none;
}

.submenu-link {
  display: block;
  padding: 8px 20px;
  color: white;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s;
}

.submenu-link:hover {
  background: linear-gradient(to bottom, #777, #666);
  color: #ffcc00;
  padding-left: 25px;
}

/* Хлебные крошки */
.breadcrumbs {
  background: #f8f8f8;
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
  font-size: 13px;
  color: #666;
}

.breadcrumbs a {
  color: #4a8bc8;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span {
  color: #999;
}

/* Основной контент каталога */
.content {
  padding: 20px;
}

.catalog-container {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 20px;
}

/* Блок фильтров */
.filters {
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #4a8bc8;
}

.filters-title {
  font-size: 18px;
  color: #2a5c8a;
  font-weight: bold;
}

.filter-toggle-btn {
  display: none;
  background: linear-gradient(to bottom, #4a8bc8, #2a5c8a);
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
}

.filter-group {
  margin-bottom: 20px;
}

.filter-group-title {
  font-weight: bold;
  color: #2a5c8a;
  margin-bottom: 10px;
  font-size: 14px;
  padding-bottom: 5px;
  border-bottom: 1px dashed #ddd;
}

.filter-options {
  list-style: none;
}

.filter-option {
  margin-bottom: 8px;
}

.filter-option label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 13px;
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
  margin-right: 8px;
}

.filter-price {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-inputs {
  display: flex;
  gap: 5px;
  width: 100%;
}

.price-input {
  flex: 1;
  width: calc(50% - 3px);
  padding: 6px;
  border: 1px solid #ddd;
  border-radius: 3px;
  text-align: center;
  font-size: 13px;
}

.price-slider {
  height: 4px;
  background: #ddd;
  border-radius: 2px;
  position: relative;
  margin: 15px 0;
  cursor: pointer;
}

.price-range {
  position: absolute;
  height: 100%;
  background: #4a8bc8;
  left: 20%;
  right: 20%;
}

.filter-btn {
  display: block;
  width: 100%;
  padding: 10px;
  background: linear-gradient(to bottom, #4a8bc8, #2a5c8a);
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
}

.filter-btn:hover {
  background: linear-gradient(to bottom, #5a9bd8, #3a6c9a);
}

/* Основной контент каталога */
.catalog-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-title {
  font-size: 24px;
  color: #2a5c8a;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid #4a8bc8;
}

/* Подкатегории */
.subcategories {
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.subcategories-title {
  font-weight: bold;
  color: #2a5c8a;
  margin-bottom: 15px;
  font-size: 16px;
}

.subcategories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.subcategory-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: #333;
}

.subcategory-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-color: #4a8bc8;
}

.subcategory-image {
  height: 100px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #ddd;
}

.subcategory-image img {
  max-width: 80%;
  max-height: 80%;
}

.subcategory-info {
  padding: 10px;
  text-align: center;
}

.subcategory-name {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 14px;
}

.subcategory-count {
  font-size: 12px;
  color: #666;
}

/* Товары */
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.sorting {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-label {
  font-size: 14px;
  color: #666;
}

.sort-select {
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: white;
}

.products-count {
  font-size: 14px;
  color: #666;
}

/* Товары в 3 колонки */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.product-item {
  background: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #333;
  display: block;
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-image {
  height: 180px;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #ddd;
  position: relative;
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff0000;
  color: white;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
  z-index: 2;
}

.product-image img {
  max-width: 90%;
  max-height: 90%;
}

.product-info {
  padding: 15px;
}

.product-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  height: 40px;
  overflow: hidden;
  line-height: 1.3;
}

/*.product-features {*/
/*  font-size: 12px;*/
/*  color: #666;*/
/*  margin-bottom: 10px;*/
/*  height: 30px;*/
/*  overflow: hidden;*/
/*  line-height: 1.4;*/
/*}*/

.product-availability {
  font-size: 12px;
  color: #6fbf4d;
  margin-bottom: 10px;
  font-weight: bold;
}

.product-availability.out-of-stock {
  color: #ff3333;
}

.product-price {
  font-size: 18px;
  font-weight: bold;
  color: #ff0000;
  margin-bottom: 15px;
}

.product-old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
  margin-left: 5px;
}

.product-discount {
  display: inline-block;
  background: #ff3333;
  color: white;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
  margin-left: 5px;
}

/* Кнопка Купить - растянута по ширине */
.btn-buy {
  display: block;
  width: 100%;
  padding: 10px;
  background: linear-gradient(to bottom, #ff9900, #e69500);
  border: 1px solid #cc7700;
  border-radius: 3px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}

.btn-buy:hover {
  background: linear-gradient(to bottom, #ffaa00, #ff8800);
  transform: translateY(-2px);
}

.btn-buy:disabled {
  background: #ccc;
  border-color: #aaa;
  cursor: not-allowed;
}

/* Пагинация */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.page-link {
  display: inline-block;
  padding: 8px 12px;
  background: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 3px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}

.page-link:hover {
  background: #4a8bc8;
  color: white;
  border-color: #4a8bc8;
}

.page-link.active {
  background: #2a5c8a;
  color: white;
  border-color: #2a5c8a;
}

.page-link.disabled {
  background: #f8f8f8;
  color: #999;
  cursor: not-allowed;
}

/* БЛОК ДОСТАВКИ - ВОССТАНОВЛЕН */
.delivery-section {
  background: linear-gradient(to bottom, #f0f8ff, #e6f2ff);
  border: 2px solid #4a8bc8;
  border-radius: 8px;
  padding: 25px;
  margin: 30px 0;
  box-shadow: 0 4px 8px rgba(74, 139, 200, 0.2);
}

.delivery-section h2 {
  color: #2a5c8a;
  text-align: center;
  margin-bottom: 25px;
  font-size: 24px;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8);
}

.delivery-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.delivery-option {
  background: white;
  border: 1px solid #b3d9ff;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.delivery-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(74, 139, 200, 0.3);
}

.delivery-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: linear-gradient(to bottom, #4a8bc8, #2a5c8a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

.delivery-title {
  font-weight: bold;
  color: #2a5c8a;
  margin-bottom: 10px;
  font-size: 18px;
}

.delivery-text {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

/* Преимущества - ВОССТАНОВЛЕН ОРИГИНАЛЬНЫЙ СТИЛЬ */
.benefits {
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 22px;
  color: #2a5c8a;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0e0e0;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-item {
  text-align: center;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  background: linear-gradient(to bottom, #4a8bc8, #2a5c8a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.benefit-title {
  font-weight: bold;
  color: #2a5c8a;
  margin-bottom: 5px;
}

/* Подвал */
.footer {
  background: linear-gradient(to bottom, #333, #222);
  color: #ccc;
  padding: 30px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.footer-column h3 {
  color: white;
  font-size: 16px;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 14px;
}

.footer-column a:hover {
  color: #ffcc00;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  font-size: 12px;
  color: #999;
}

/* Соцсети */
.social {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.social a {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #444;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  color: white;
  transition: all 0.3s;
}

.social a:hover {
  transform: translateY(-3px);
  background: #4a8bc8;
}

/* Мобильное меню */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
}

/* Кнопка показать фильтры на мобильных */
.mobile-filters-btn {
  display: none;
  width: 100%;
  padding: 12px;
  background: linear-gradient(to bottom, #4a8bc8, #2a5c8a);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 15px;
  text-align: center;
}

.mobile-filters-btn i {
  margin-right: 8px;
}

/* АДАПТИВНОСТЬ */
/* Экраны больше 1200px */
@media (min-width: 1200px) {
  .container {
    width: 1200px;
  }

  .nav-container {
    max-width: 1200px;
  }
}

/* Планшеты 768px - 990px */
@media (max-width: 990px) and (min-width: 768px) {
  .container {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  .catalog-container {
    grid-template-columns: 220px 1fr;
    gap: 15px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .subcategories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .delivery-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* На планшетах фильтр виден */
  .filters {
    display: block;
  }

  .mobile-filters-btn {
    display: none;
  }
}

/* Мобильная версия */
@media (max-width: 767px) {
  .container {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  .header {
    padding: 15px;
  }

  .logo {
    float: none;
    text-align: center;
    display: block;
    margin-bottom: 15px;
    padding-right: 40px;
  }

  .header-info {
    float: none;
    text-align: center;
    margin-bottom: 15px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .header-bottom {
    margin-top: 10px;
    padding: 10px;
  }

  .search-box {
    float: none;
    width: 100%;
    margin-bottom: 10px;
  }

  .search-box input {
    width: calc(100% - 80px);
  }

  .cart-info {
    float: none;
    width: 100%;
    text-align: center;
  }

  .nav {
    display: none;
    padding: 0;
    position: static;
  }

  .nav.active {
    display: block;
  }

  .nav-container {
    max-width: 100%;
  }

  .nav-main {
    flex-direction: column;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #444;
    text-align: left;
    padding: 12px 20px;
    position: relative;
  }

  .nav-item:last-child .nav-link {
    border-bottom: none;
  }

  .nav-link::after {
    content: "›";
    position: absolute;
    right: 20px;
    transition: transform 0.3s;
  }

  .nav-link.active::after {
    transform: rotate(90deg);
  }

  .submenu {
    position: static;
    display: none;
    background: linear-gradient(to bottom, #666, #555);
    border: none;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
  }

  .nav-item.active .submenu {
    display: block;
  }

  .submenu-columns {
    flex-direction: column;
  }

  .submenu-title {
    background: linear-gradient(to bottom, #777, #666);
    padding: 10px 20px 10px 30px;
  }

  .submenu-link {
    padding: 8px 20px 8px 40px;
  }

  .submenu-link:hover {
    padding-left: 45px;
  }

  .catalog-container {
    grid-template-columns: 1fr;
  }

  /* Мобильная кнопка показать фильтры */
  .mobile-filters-btn {
    display: block;
  }

  .filters {
    display: none;
    margin-bottom: 20px;
  }

  .filters.active {
    display: block;
  }

  .filter-toggle-btn {
    display: block;
  }

  .subcategories-grid {
    grid-template-columns: 1fr;
  }

  .subcategory-image {
    display: none;
  }

  .subcategory-card {
    padding: 10px;
    text-align: center;
  }

  .products-header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-item {
    display: flex;
    flex-direction: column;
  }

  .product-image {
    height: 150px;
  }

  .product-title {
    height: auto;
    min-height: 40px;
  }

  /*.product-features {*/
  /*  height: auto;*/
  /*  min-height: 30px;*/
  /*}*/

  .delivery-options {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .benefit-item {
    flex: 1 0 calc(50% - 15px);
    min-width: 140px;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
  .benefit-item {
    flex: 1 0 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.btn-submit, .btn-close-success {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}

.order-summary {
  margin: 20px 0;
  padding: 15px;
  background: #f5f5f5;
  border-radius: 4px;
}


/* Блок информации о доставке в категории */
.category-delivery-info {
  background: linear-gradient(to bottom, #f0f8ff, #e6f2ff);
  border: 2px solid #4a8bc8;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #2a5c8a;
  font-size: 14px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(74, 139, 200, 0.2);
}

.delivery-info-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(to bottom, #4a8bc8, #2a5c8a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.delivery-info-text {
  flex: 1;
}

/* Адаптивность для мобильных */
@media (max-width: 767px) {
  .category-delivery-info {
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    font-size: 13px;
  }

  .delivery-info-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}


 .logo {
   float: left;
   text-decoration: none;
   display: flex;
   align-items: center;
   gap: 12px;
   padding: 5px 0;
 }

.logo-icon {
  flex-shrink: 0;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.5));
}

.logo-text {
  text-align: left;
}

.logo-main {
  font-size: 26px;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
  line-height: 1;
}

.logo-main span {
  color: #ffcc00;
  text-shadow: 0 0 5px rgba(255, 204, 0, 0.5),
  2px 2px 3px rgba(0, 0, 0, 0.5);
}

.logo-sub {
  font-size: 11px;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Для мобильных */
@media (max-width: 991px) {
  .logo {
    float: none;
    text-align: center;
    display: block;
    margin-bottom: 15px;
    padding-right: 40px;
    justify-content: center;
  }

  .logo-icon {
    display: inline-block;
    margin-bottom: 5px;
  }

  .logo-text {
    text-align: center;
  }

  .header-info {
    float: none;
    text-align: center;
    margin-bottom: 15px;
  }
}