  .cat-mark-links {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: 300px 1fr 300px;
      gap: 20px;
      align-items: start;
  }

  .categories-list {
      background: white;
      border: 1px solid #dddddd6b;
      padding: 0;
      position: sticky;
      top: 20px;
  }

  .marketing {
      background: white;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      position: relative;
      width: 100%;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 0;
  }

  .marketing-posters {
      height: 330px;
      padding: 6px 0;
      overflow: hidden;
      position: relative;
      background: white;
  }

  .marketing-products {
      height: 148px;
      padding: 15px 20px;
      overflow: hidden;
      position: relative;
      background: white;
  }

  .products-grid {
      display: flex;
      gap: 15px;
      align-items: center;
      height: 100%;
      overflow: hidden;
      scrollbar-width: none;
      scroll-behavior: smooth;
  }

  .products-grid::-webkit-scrollbar {
      display: none;
  }

  .product-scroll-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: white;
      border: 1px solid #ddd;
      border-radius: 50%;
      width: 35px;
      height: 35px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
  }

  .product-scroll-btn:hover {
      background: #f5f5f5;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .product-scroll-btn.left {
      left: 5px;
  }

  .product-scroll-btn.right {
      right: 5px;
  }

  .product-scroll-btn i {
      font-size: 18px;
      color: #333;
  }

  .product-item {
      flex: 0 0 auto;
      width: 100px;
      text-align: center;
      cursor: pointer;
  }

  .product-item:hover p {
      color: #fbbf24;
  }

  .product-item img {
      width: 80px;
      height: 80px;
      object-fit: contain;
      border-radius: 8px;
      background: #f9f9f9;
      padding: 5px;
      margin: 0 auto 8px;
      display: block;
  }

  .product-item p {
      font-size: 12px;
      color: #333;
      margin: 0;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      font-weight: 500;
      max-width: 100px;
  }

  .product-item-link {
      text-decoration: none;
      color: inherit;
      display: block;
      width: 100%;
  }

  .carousel-container {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
  }

  .carousel-track {
      display: flex;
      transition: transform 0.5s ease;
      height: 100%;
      width: 100%;
  }

  .carousel-slide {
      min-width: 100%;
      max-width: 100%;
      height: 100%;
      position: relative;
      flex-shrink: 0;
  }

  .carousel-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
      display: block;
  }

  .carousel-slide a {
      display: block;
      width: 100%;
      height: 100%;
  }

  .carousel-indicators {
      position: absolute;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 10;
  }

  .indicator {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .indicator.active {
      background: white;
      width: 24px;
      border-radius: 5px;
  }

  .carousel-prev-btn,
  .carousel-next-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.5);
      border: none;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      opacity: 0;
      transition: opacity 0.3s ease, background 0.3s ease;
      color: white;
  }

  .carousel-prev-btn:hover,
  .carousel-next-btn:hover {
      background: rgba(0, 0, 0, 0.8);
  }

  .carousel-prev-btn {
      left: 10px;
  }

  .carousel-next-btn {
      right: 10px;
  }

  .carousel-container:hover .carousel-prev-btn,
  .carousel-container:hover .carousel-next-btn {
      opacity: 1;
  }

  @media (max-width: 900px) {
      .carousel-prev-btn,
      .carousel-next-btn {
          display: none;
      }
  }

  .quick-links {
      background: white;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }



  @media (max-width: 1024px) {
      .cat-mark-links {
          grid-template-columns: 200px 1fr 200px;
          gap: 15px;
      }
  }

  @media (max-width: 900px) {
      .cat-mark-links {
          grid-template-columns: 1fr;
          gap: 0;
          padding: 0;
      }

      .categories-list,
      .quick-links {
          display: none;
      }

      .marketing {
          border-radius: 0;
          box-shadow: none;
          background: white;
      }

      .marketing-posters {
          height: 230px;
          padding: 0;
          background: white;
          position: relative;
          overflow: hidden;
      }

      .carousel-container {
          height: 100%;
          width: 100%;
          overflow: visible;
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 0;
          background: white;
      }

      .carousel-track {
          display: flex;
          gap: 12px;
          padding: 0 calc(8% - 6px);
          overflow-x: auto;
          scroll-snap-type: x mandatory;
          scrollbar-width: none;
          -webkit-overflow-scrolling: touch;
          transition: none;
          width: 100%;
          height: 100%;
      }

      .carousel-track::-webkit-scrollbar {
          display: none;
      }

      .carousel-slide {
          flex: 0 0 84%;
          min-width: 84%;
          max-width: 84%;
          height: 100%;
          scroll-snap-align: center;
          border-radius: 0;
          overflow: hidden;
          box-shadow: none;
          transition: transform 0.3s ease, opacity 0.3s ease;
      }

      .carousel-slide.clone {
          pointer-events: none;
      }

      .carousel-slide.center {
          transform: scale(1);
          opacity: 1;
      }

      .carousel-slide img {
          border-radius: 12px;
          object-fit: cover;
          width: 100%;
          height: 100%;
      }

      .carousel-indicators {
          display: flex;
          bottom: 10px;
      }

      .marketing-products {
          height: auto;
          padding: 20px 0;
          background: white;
      }

      .product-scroll-btn {
          display: none;
      }

      .products-grid {
          display: grid;
          grid-template-columns: repeat(4, 1fr);
          gap: 15px;
          padding: 0 15px;
          overflow: visible;
      }

      .product-item {
          width: 100%;
          display: flex;
          flex-direction: column;
          align-items: center;
          min-width: 0;
      }

      .product-item img {
          width: 100%;
          height: auto;
          aspect-ratio: 1;
          max-width: 80px;
          border-radius: 12px;
          background: white;
          border: 1px solid #f0f0f0;
      }

      .product-item p {
          font-size: 11px;
          line-height: 1.3;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          margin-top: 6px;
          text-align: center;
          width: 100%;
          max-width: 100%;
          padding: 0 2px;
          box-sizing: border-box;
      }
  }

  @media (max-width: 768px) {
      .marketing-posters {
          height: 200px;
      }

      .carousel-slide {
          flex: 0 0 86%;
          min-width: 86%;
          max-width: 86%;
      }

      .products-grid {
          gap: 12px;
          padding: 0 12px;
      }
  }

  @media (max-width: 480px) {
      .marketing-posters {
          height: 180px;
      }

      .carousel-slide {
          flex: 0 0 88%;
          min-width: 88%;
          max-width: 88%;
      }

      .marketing-products {
          padding: 15px 0;
      }

      .products-grid {
          gap: 10px;
          padding: 0 10px;
      }

      .product-item img {
          max-width: 70px;
      }

      .product-item p {
          font-size: 10px;
      }
  }