* {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: 'Segoe UI', sans-serif;
            background: #f4f6f8;
            color: #333;
        }

        header {
            background: #fff;
            padding: 15px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #e2e2e2;
            position: sticky;
            top: 0;
            z-index: 999;
        }

        header .logo {
            font-size: 22px;
            font-weight: bold;
            color: #007bff;
        }

        nav a {
            margin: 0 12px;
            text-decoration: none;
            color: #444;
            font-weight: 500;
        }

        .breadcrumbs {
            padding: 10px 30px;
            background: #f9f9f9;
            font-size: 14px;
        }

        .container {
            display: flex;
            max-width: 1300px;
            margin: 20px auto;
            gap: 20px;
            padding: 0 30px;
        }

        .main-content {
            flex: 3;
        }

        .sidebar {
            flex: 1;
            display: block;
        }



        h2 {
            margin-bottom: 10px;
            border-left: 4px solid #007BFF;
            padding-left: 10px;
        }

        .filters,
        .search-sort {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }

        .filters select,
        .search-sort input,
        .search-sort select {
            padding: 8px 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }

        .product-card {
            background: rgb(255, 255, 255);
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
            position: relative;
            transition: transform 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-3px);
        }

        .product-card img {
            width: 100%;
            height: 160px;
            object-fit: contain;
            margin-bottom: 10px;
        }

        .badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: red;
            color: #fff;
            font-size: 12px;
            padding: 3px 7px;
            border-radius: 5px;
        }

        .rating {
            color: gold;
            margin-bottom: 5px;
        }

        .product-card h4 {
            margin: 5px 0;
            font-size: 16px;
        }

        .product-card p {
            font-size: 14px;
            color: #666;
        }

        .product-card a {
            display: inline-block;
            margin-top: 5px;
            background: #007bff;
            color: white;
            padding: 6px 10px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 13px;
        }

        .read-more {
            background: #28a745;
            margin-left: 10px;
        }

        .section {
            margin-bottom: 40px;
        }

        .sidebar-section {
            background: white;
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 8px;
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
        }

        .sidebar-section h4 {
            margin-bottom: 10px;
            border-bottom: 1px solid #ddd;
            padding-bottom: 5px;
        }

        .sidebar-list li {
            font-size: 14px;
            margin-bottom: 10px;
            list-style: none;
            padding-left: 5px;
            border-left: 3px solid #007bff;
        }

        .sidebar-list .blog-title {
            font-weight: bold;
            color: #007bff;
        }

        .sidebar-list small {
            font-size: 12px;
            color: #666;
        }

        .review-card {
            display: flex;
            align-items: flex-start;
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
            margin-bottom: 15px;
            gap: 15px;
        }

        a.review {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        /* Optional: pointer cursor & hover effect */
        a.review:hover .review-card {
            box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
            transform: scale(1.02);
            transition: 0.2s ease;
            cursor: pointer;
        }

        .review-img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 5px;
        }

        #loadMoreBtn {
            background: #007bff;
            color: #fff;
            padding: 8px 14px;
            border: none;
            border-radius: 5px;
            margin-top: 10px;
            cursor: pointer;
        }

        .deal-card {
            display: flex;
            align-items: center;
            gap: 15px;
            background: white;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
        }

        .deal-img {
            width: 180px;
            height: 140px;
            object-fit: cover;
            border-radius: 5px;
        }

        .deal-timer {
            font-size: 14px;
            color: red;
        }

        .blog-post {
            background: rgb(36, 36, 36);
            display: flex;
            color: white;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 15px;
            gap: 15px;
            box-shadow: 0 10px 18px rgba(0, 0, 0, 0.05);
        }

        .blog-post img {
            width: 180px;
            height: 130px;
            border-radius: 20px;
            object-fit: cover;
        }

        .blog-post-content {
            flex: 1;
        }

        .blog-post-content h5 {
            margin: 0 0 5px;
            font-size: 1.5rem;
        }

        .blog-post-content p {
            font-size: 14px;
            color: #f9f6f6;
            margin: 0 0 5px;
        }

        .blog-post-content a {
            font-size: 13px;
            color: #007bff;
            text-decoration: none;
        }

        /* Responsive  */
        @media (max-width: 576px) {
            .blog-post-content h5 {
                margin: 0 0 5px;
                font-size: 0.7rem;
            }

            .blog-post img {
                width: 101px;
                height: 70px;
                border-radius: 20px;
                object-fit: cover;
            }

            .blog-post-content p {
                font-size: 9px;
                color: #f9f6f6;
                margin: 0 0 5px;
            }

            .blog-post-content a {
                font-size: 7px;
                color: #007bff;
                text-decoration: none;
            }

        }

        @media (max-width: 991px) {
            .container {
                flex-direction: column;
            }

            .sidebar {
                display: none;
            }
        }