/* Base Styles */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-md-3, .col-md-4, .col-md-5 {
  padding: 0 15px;
  box-sizing: border-box;
}

/* Header Styles */
.tygh-header {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.top-logo img {
  max-width: 100%;
  height: auto;
}

.ty-cr-phone {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.ty-cr-link a {
  color: #0066cc;
  text-decoration: none;
}

/* Search Form */
.ty-search-block {
  position: relative;
}

.ty-search-block__input {
  width: 100%;
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.ty-search-magnifier {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
}

/* Navigation */
.ty-menu__items {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.ty-menu__item {
  margin-right: 20px;
}

.ty-menu__item-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.ty-menu__submenu {
  display: none;
  position: absolute;
  background: #fff;
  box-shadow: 0 3px 5px rgba(0,0,0,0.2);
  z-index: 100;
}

.ty-menu__item:hover .ty-menu__submenu {
  display: block;
}

/* Banner Slider */
.homepage-banners {
  margin-bottom: 30px;
}

.ty-banner__image-item img {
  width: 100%;
  height: auto;
}

/* New Products */
.new-products {
  margin-bottom: 30px;
}

.ty-mainbox-simple-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #0066cc;
}

/* Catalog */
.ty-subcategories {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.ty-subcategories-block__item {
  width: 20%;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
}

.ty-subcategories-img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

/* Brands */
.brands {
  margin-bottom: 30px;
}

.ty-pict.ty-grayscale {
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.ty-pict.ty-grayscale:hover {
  filter: grayscale(0);
}

/* Footer */
.tygh-footer {
  background: #f5f5f5;
  padding: 30px 0;
  margin-top: 30px;
}

.tygh-footer h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #0066cc;
}

.ty-text-links {
  list-style: none;
  padding: 0;
}

.ty-text-links li {
  margin-bottom: 8px;
}

.ty-text-links a {
  color: #333;
  text-decoration: none;
}

.footer-copyright {
  margin-top: 30px;
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  .col-md-3, .col-md-4, .col-md-5 {
    width: 100%;
    margin-bottom: 15px;
  }
  
  .ty-subcategories-block__item {
    width: 50%;
  }
  
  .ty-menu__items {
    flex-direction: column;
  }
  
  .ty-menu__item {
    margin-right: 0;
    margin-bottom: 10px;
  }
}