:root {
            --primary-red: #ff3355;
            --accent-yellow: #ffcc00;
            --text-dark: #222;
            --text-gray: #666;
            --border-color: #eee;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #fff;
            /* padding: 50px 20px; */
            /* display: flex; */
            justify-content: center;
        }

        .product-container {
            display: flex;
            flex-wrap: wrap;
            /* max-width: 1100px; */
            gap: 50px;
            padding:35px 74px;
            justify-content: center;
            align-items: center;
        }

        /* Left Side: Image Gallery Style */
        .image-section {
            flex: 1;
            min-width: 350px;
            position: relative;
            border: 4px solid var(--accent-yellow);
            border-radius: 20px;
            padding: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #fff;
            z-index: 1;
        }

        /* Decorative Background Circles */
        .image-section::before {
            content: '';
            position: absolute;
            width: 95%;
            height: 222px;
            background-color: var(--primary-red);
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            border-radius:120px;
            z-index: -1;
        }


        .product-main-img {
            max-width: 100%;
            height: 480px;
            filter: drop-shadow(0 15px 15px rgba(0,0,0,0.1));
        }

        .sale-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--accent-yellow);
            color: #000;
            font-weight: 700;
            font-size: 0.85rem;
            padding: 12px 10px;
            border-radius: 50%;
            text-transform: uppercase;
        }

        /* Right Side: Product Info */
        .info-section {
            flex: 1;
            min-width: 350px;
        }

        .availability {
            color: #28a745;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .stars { color: var(--accent-yellow); font-size: 0.8rem; }
        .review-count { color: var(--text-gray); font-size: 0.85rem; }

        .product-title {
            font-size: 2.2rem;
            line-height: 1.2;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .price-tag {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-red);
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 10px;
        }

        .old-price {
            text-decoration: line-through;
            color: var(--text-gray);
            font-size: 1.2rem;
            font-weight: 400;
        }

        .section-title {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .whats-included {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-bottom: 30px;
        }

        /* Form Elements */
        .action-area {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
        }

        .qty-input {
            width: 70px;
            padding: 10px;
            border: 2px solid var(--accent-yellow);
            border-radius: 30px;
            text-align: center;
            font-weight: 700;
            outline: none;
        }

        .add-btn {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 12px 35px;
            border-radius: 10px;
            font-weight: 700;
            cursor: pointer;
            transition: 0.3s;
        }

        .add-btn:hover { background-color: #e62e4d; }

        .tags {
            font-size: 0.85rem;
            color: var(--text-gray);
        }

        .tags span {
            color: var(--text-dark);
            font-weight: 600;
            margin-left: 5px;
        }

        /* Responsive Breakpoints */
        @media (max-width: 768px) {
            .product-container { flex-direction: column; }
            .image-section, .info-section { min-width: 100%; }
            .product-title { font-size: 1.8rem; }
        }