body {
            font-family: Poppins, sans-serif;
            margin: 0;
            padding: 0;
            text-align: center;
            transition: background 1s ease-in-out;
        }
        .title-section {
            height: 0vh;
            background-color: #B0E0E6;
            justify-content: flex-start;
        }
        nav {
            background: #333;
            padding: 10px;
        }
        nav a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
        }
        .section {
                    height: 70vh;
                    margin: 0;
                    padding: 40px;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    background-size: cover;
                    background-position: center;
                    transition: opacity 1s ease-in-out;
                }

        .footer {
            background: #333;
            color: white;
            padding: 10px;
            position: fixed;
            bottom: 0;
            width: 100%;
            text-align: center;
        }
        .salty_scalp_rating {
            color: black;
            font-size: 16px;
            margin-top: 3%;
            margin-bottom: 0;
        }
        .product-container {
            display: flex;
            align-items: center;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            max-width: 1000px;
            width: 100%;
            height: 400px;
        }

        .product-image {
            flex: 1;
            margin-right: 20px;
        }

        .product-image img {
            width: 100%;
            border-radius: 10px;
        }

        .product-details {
            flex: 2;
        }

        .product-details h1 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .product-details p {
            line-height: 1.6;
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .product-details .price {
            font-size: 1.5rem;
            color: #333;
            font-weight: 600;
            margin-top: 10px;
        }

        open-button {
            background-color: #555;
            color: white;
            padding: 16px 20px;
            border: none;
            cursor: pointer;
            opacity: 0.8;
            position: fixed;
            bottom: 23px;
            right: 28px;
            width: 280px;
        }

        .form-popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border: 3px solid #f1f1f1;
            z-index: 9;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

        }
        .form-container {
            width: 100%;
            padding: 20px;
            background-color: white;
            box-sizing: border-box;
        }

        .form-container textarea {
              width: 100%;
              padding: 15px;
              margin: 5px 0 22px 0;
              border: none;
              background: #f1f1f1;
              resize: none;
              min-height: 200px;
              box-sizing: border-box;
        }

        .form-container textarea:focus {
              background-color: #ddd;
              outline: none;
              max-width: 300px;
              max-height: 300px;
              box-sizing: border-box;
        }

        .form-container .btn {
              background-color: #04AA6D;
              color: white;
              padding: 16px 20px;
              border: none;
              cursor: pointer;
              width: 100%;
              margin-bottom:10px;
              opacity: 0.8;
              box-sizing: border-box;
        }
        .form-container .cancel {
            background-color: red;
        }
        .form-container .btn:hover, .open-button:hover {
            opacity: 1;
        }
        .review-card {
              max-width: 300px;
              background-color: #fff;
              border-radius: 8px;
              box-shadow: 0 2px 8px rgba(0,0,0,0.1);
              padding: 1.5rem;
              margin: 0 auto;
            }
        .review-top {
              display: flex;
              align-items: center;
              margin-bottom: 1rem;
            }
        .avatar {
              background-color: #00A87E;
              color: #fff;
              border-radius: 50%;
              width: 40px;
              height: 40px;
              display: flex;
              justify-content: center;
              align-items: center;
              font-weight: 600;
              font-size: 1rem;
              margin-right: 0.75rem;
            }
        .review-info {
              flex: 1;
            }
        .review-name {
              font-size: 1.1rem;
              font-weight: 600;
              margin: 0;
              margin-bottom: 0.3rem;
              color: #333;
            }
        .review-rating {
              font-size: 1rem;
              color: #f39c12;
              line-height: 1;
              font-size: 14px;
            }
        .review-rating .star {
              margin-right: 2px;
            }
        .review-content {
              font-size: 0.9rem;
              line-height: 1.5;
              color: #555;
            }
        .review-container {
                display: flex;  /* Makes items sit in a row */
                gap: 10px;  /* Adds space between boxes */
                justify-content: center;  /* Centers them horizontally */
                flex-wrap: wrap;  /* Makes them wrap to the next line if screen is too small */
            }

