   body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #f9f9f9;
    }

    /* === HEADER === */
    header {
      background-color: #fff;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 0;
    }

    .logo {
      font-size: 24px;
      font-weight: bold;
    }

    nav {
      display: flex;
      align-items: center;
    }

    nav ul {
      display: flex;
      list-style: none;
      padding: 0;
      margin: 0;
      gap: 20px;
    }

    nav a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
    }

    .cart-icon {
      width: 24px;
      height: 24px;
      margin-left: 15px;
      fill: #333;
      cursor: pointer;
      transition: transform 0.2s;
    }

    .cart-icon:hover {
      transform: scale(1.1);
    }

    /* === BURGER === */
    .burger-wrapper {
      display: none;
      align-items: center;
      gap: 15px;
    }

    .burger {
      display: flex;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .burger div {
      width: 25px;
      height: 3px;
      background-color: #333;
      transition: all 0.3s ease;
    }

    nav.mobile {
      display: none;
      flex-direction: column;
      gap: 10px;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      background: #fff;
      padding: 20px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    nav.mobile.open {
      display: flex;
    }

    /* === MAIN === */
    main {
      padding: 40px 20px;
    }

    .products {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
    }

    .card {
      background: #fff;
      padding: 16px;
      border-radius: 10px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
      text-align: center;
    }

    .card img {
      max-width: 100%;
      border-radius: 8px;
    }

    .card h3 {
      margin: 10px 0 6px;
      font-size: 18px;
    }

    .card .price {
      font-weight: bold;
      color: #e60023;
    }

    .card button {
      margin-top: 10px;
      background-color: #C8F3DE;
      border: none;
      padding: 8px 16px;
      border-radius: 20px;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.3s;
    }

    .card button:hover {
      background-color: #a8eacb;
    }

    footer {
      background-color: #fff;
      text-align: center;
      padding: 30px 20px;
      font-size: 14px;
      color: #666;
      border-top: 1px solid #eee;
    }

    /* === MEDIA === */
    @media (max-width: 768px) {
      nav.desktop {
        display: none;
      }

      .burger-wrapper {
        display: flex;
		padding-right:20px;
      }

      .logo {
        font-size: 20px;
		padding-left:20px;
      }
    }
	
	.cart-count {
  background: red;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
  position: relative;
  top: -10px;
  left: -10px;
}

.cart-icon {
  width: 24px;
  height: 24px;
  color: #333;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.cart-icon:hover {
  transform: scale(1.05);
}

    .showroom-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      padding: 40px 20px;
      max-width: 1200px;
      margin: auto;
      gap: 30px;
    }

    .showroom-image {
      flex: 1 1 400px;
      max-width: 500px;
      border-radius: 20px;
      overflow: hidden;
    }

    .showroom-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .showroom-text {
      flex: 1 1 400px;
      max-width: 600px;
    }

    .showroom-text h1 {
      font-size: 48px;
      margin: 0 0 20px;
      line-height: 1.2;
    }

    .h-main {
      font-size: 48px;
      margin: 0 0 20px;
      line-height: 1.2;
    }


    .showroom-text p {
      font-size: 18px;
      margin: 10px 0;
    }

    .showroom-text .highlight {
      font-weight: bold;
    }

    .showroom-button {
      display: inline-block;
      margin-top: 30px;
      padding: 12px 30px;
      background: #C8F3DE;
      color: #000;
      border-radius: 30px;
      font-size: 16px;
      text-decoration: none;
      font-weight: 500;
      transition: background 0.3s;
    }

    .showroom-button:hover {
      background: #a8eacb;
    }

    @media (max-width: 768px) {
      .showroom-text h1 {
        font-size: 32px;
      }
	  
    .h-main {
      font-size: 32px;

    }
	  
    }

.old-price {
  font-size: 16px;
  color: #888;
  text-decoration: line-through;
  margin-bottom: 0;
}


.page {


  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.catalog-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
  padding: 0 10px;
}

.catalog-link {
  display: inline-block;
  padding: 10px 18px;
  background-color: #f5f5f5;
  color: #222;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid #ddd;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.catalog-link:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

@media (max-width: 600px) {
  .catalog-buttons {
    flex-direction: column;
  }

  .catalog-link {
    width: 100%;
    text-align: center;
  }
}

  .text-container {
      max-width: 600px;
      font-family: Arial, sans-serif;
    }

    .toggle-button {
      background-color: #f0c040;
      border: none;
      padding: 10px 15px;
      font-size: 16px;
      cursor: pointer;
      border-radius: 8px;
      margin-bottom: 10px;
    }

    .hidden-text {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.6s ease;
    }

    .hidden-text.open {
      max-height: 1000px; /* должно быть больше высоты содержимого */
    }
	
    #toggle-button {
	  margin-top:15px;
      background-color: #a8e6a2;
      color: #034d1f;
      border: none;
      padding: 12px 20px;
      font-size: 16px;
      font-weight: bold;
      border-radius: 10px;
      cursor: pointer;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: background-color 0.3s, transform 0.2s;
    }

    #toggle-button:hover {
      background-color: #92d892;
      transform: translateY(-2px);
    }	