body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #333;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
}

.breadcrumbs {
    font-size: 14px;
    color: #888;
    margin-bottom: 16px;
    margin-top: 20px;
}

.breadcrumbs a {
    color: #999;
    text-decoration: none;
}

h1 {
    font-size: 32px;
    margin-bottom: 30px;
}

.search-wrapper {
    margin-bottom: 40px;
}

.search-input {
    position: relative;
    width: 300px;
}

.search-input input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.search-input i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 16px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.brand-card {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 30px 15px;
    text-align: center;
    transition: 0.3s;
    background: #fff;
    cursor: pointer;
}

.brand-card:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.brand-card img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
    margin: 0 auto;
}

.brand-card-name {
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
}

/* ——— Поисковое поле с иконкой внутри ——— */
.search-wrapper {
  margin: 16px 0 24px;
}

.search-input {
  position: relative;
  max-width: 520px; /* можно убрать/поменять */
  color: #9aa0a6;   /* цвет иконки по умолчанию (currentColor) */
}

.search-input input {
  width: 100%;
  height: 42px;
  padding: 0 40px 0 12px;     /* место под иконку справа */
  border: 1px solid #e3e5e7;
  border-radius: 8px;
  background: #fff;
  color: #111;
}

.search-input input::placeholder {
  color: #9aa0a6;
}

.search-input svg {
  position: absolute;
  right: 12px;                 /* отступ иконки от правого края */
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;        /* клики проходят в инпут */
  width: 20px;
  height: 20px;
  stroke: currentColor;        /* берёт цвет из .search-input */
}

.search-input:focus-within {
  color: #6b7280;              /* иконка чутка темнее при фокусе */
}

.search-input input:focus {
  border-color: #cbd5e1;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15); /* легкий focus-ring */
}
