* {
      margin: 0;
        padding: 0;
          box-sizing: border-box;
            font-family: "Segoe UI", sans-serif;
            }

            body {
              background: #f1f3f6;
              }

              .navbar {
                display: flex;
                  align-items: center;
                    justify-content: space-between;
                      background: #232f3e;
                        color: white;
                          padding: 10px 20px;
                          }

                          .logo {
                            font-size: 1.5rem;
                              font-weight: 600;
                              }
                              .logo span {
                                color: #ff9900;
                                }

                                .navbar input {
                                  width: 50%;
                                    padding: 8px;
                                      border: none;
                                        border-radius: 3px;
                                        }

                                        .cart-btn {
                                          cursor: pointer;
                                            background: #ff9900;
                                              padding: 6px 12px;
                                                border-radius: 3px;
                                                  color: #232f3e;
                                                    font-weight: bold;
                                                    }

                                                    .products {
                                                      display: grid;
                                                        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                                                          gap: 20px;
                                                            padding: 20px;
                                                            }

                                                            .product-card {
                                                              background: white;
                                                                border-radius: 8px;
                                                                  padding: 10px;
                                                                    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
                                                                      display: flex;
                                                                        flex-direction: column;
                                                                          justify-content: space-between;
                                                                          }

                                                                          .product-card img {
                                                                            width: 100%;
                                                                              border-radius: 6px;
                                                                              }

                                                                              .product-info {
                                                                                padding: 10px 0;
                                                                                }

                                                                                .product-info h3 {
                                                                                  font-size: 1.1rem;
                                                                                    margin-bottom: 4px;
                                                                                    }

                                                                                    .price {
                                                                                      font-weight: 600;
                                                                                        color: #b12704;
                                                                                        }

                                                                                        .add-btn {
                                                                                          background: #ffd814;
                                                                                            border: 1px solid #fcd200;
                                                                                              padding: 8px;
                                                                                                cursor: pointer;
                                                                                                  border-radius: 5px;
                                                                                                    transition: background 0.3s;
                                                                                                    }
                                                                                                    .add-btn:hover {
                                                                                                      background: #f7ca00;
                                                                                                      }

                                                                                                      .filters {
                                                                                                        display: flex;
                                                                                                          justify-content: center;
                                                                                                            gap: 10px;
                                                                                                              padding: 10px;
                                                                                                                background: #fff;
                                                                                                                  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
                                                                                                                  }

                                                                                                                  .filters select {
                                                                                                                    padding: 5px 10px;
                                                                                                                    }

                                                                                                                    .cart {
                                                                                                                      position: fixed;
                                                                                                                        right: 0;
                                                                                                                          top: 0;
                                                                                                                            height: 100%;
                                                                                                                              width: 320px;
                                                                                                                                background: white;
                                                                                                                                  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
                                                                                                                                    padding: 20px;
                                                                                                                                      overflow-y: auto;
                                                                                                                                        transition: transform 0.3s;
                                                                                                                                        }

                                                                                                                                        .cart.hidden {
                                                                                                                                          transform: translateX(100%);
                                                                                                                                          }

                                                                                                                                          .cart-total {
                                                                                                                                            font-weight: 700;
                                                                                                                                              font-size: 1.1rem;
                                                                                                                                                margin-top: 10px;
                                                                                                                                                }

                                                                                                                                                footer {
                                                                                                                                                  background: #232f3e;
                                                                                                                                                    color: white;
                                                                                                                                                      text-align: center;
                                                                                                                                                        padding: 10px;
                                                                                                                                                          font-size: 0.9rem;
                                                                                                                                                          }
