body {
            margin: 0;
            font-family: Arial, sans-serif;
        }

        /* Navbar */
        .navbar {
            display: flex;
            align-items: center;
            padding: 12px 30px;
            background: linear-gradient(90deg, #0a0f2c, #6192dd);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-radius: 0 0 10px 10px;
        }

        .nav-links {
            margin-left: auto;
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 55px;
        }

        .nav-links a {
            margin-left: 25px;
            text-decoration: none;
            color: #fff;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s, transform 0.3s;
        }

        .nav-links a:hover {
            color: #f6f6f7;
            transform: scale(1.05);
        }

        .nav-links .cart {
            font-weight: bold;
            background-color: #fff;
            color: #ff7e5f;
            padding: 6px 12px;
            border-radius: 5px;
            transition: background-color 0.3s, color 0.3s;
        }

        .nav-links .cart:hover {
            background-color: #ff7e5f;
            color: #fff;
        }

        .logo-img {
            border-radius: 50%;
            border: 2px solid #050101;
            transition: transform 0.3s;
        }

        .logo-img:hover {
            transform: scale(1.05);
        }

        /* Slider */
        .slider {
            width: 100%;
            height: 350px;
            position: relative;
        }

        .slides img {
            width: 100%;
            height: 350px;
            object-fit: fill;
            position: absolute;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slides img.active {
            opacity: 1;
        }

        /* Dots */
        .dots {
            position: absolute;
            bottom: 20px;
            width: 100%;
            text-align: center;
        }

        .dot {
            height: 15px;
            width: 15px;
            margin: 0 5px;
            display: inline-block;
            background-color: #ff4b33;
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .dot.active {
            background-color: #fff;
        }
           /* Zoom effect on main image */
        .zoom-container {
            overflow: hidden;
        }

        .zoom-container img {
            transition: transform 0.3s ease;
            cursor: zoom-in;
        }

        .zoom-container img:hover {
            transform: scale(1.5);
        }

        /* Thumbnail hover */
        .thumbnail {
            cursor: pointer;
            border: 2px solid transparent;
            transition: border 0.2s, transform 0.2s;
            height: 100px;
            width: 100px;
            border-radius: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        .thumbnail:hover {
            border-color: #3b82f6;
            transform: scale(1.05);
        }

        .thumbnail.active {
            border-color: #02050a;
        }