<style>
        html {
            scroll-behavior: smooth;
        }
        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #e6f2fb;
            color: #333;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
		
		.navbar {
			background-color: #3a8bcd;			
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			padding: 1em;
			position: sticky;
			top: 0;
			z-index: 1000;
		}

		/* Adjust links inside navbar */
		.navbar a, .dropbtn {
			color: white;
			text-decoration: none;
			font-weight: bold;
			padding: 0.5em 1em;
			margin: 0.5em;
			cursor: pointer;
		}

		/* Dropdown container */
		.dropdown {
			position: relative;
			display: inline-block;
		}

		/* Hidden dropdown menu */
		.dropdown-content {
			display: none;
			position: absolute;
			background-color: #111111;
			min-width: 160px;
			box-shadow: 0 8px 16px rgba(0,0,0,1.2);
			border-radius: 8px;
			overflow: hidden;
			z-index: 1001;
		}

		/* Dropdown links */
		.dropdown-content a {
			color: #3a8bcd;
			padding: 12px 16px;
			text-decoration: none;
			display: block;
			text-align: center;
			transition: background-color 0.3s;
		}

		.dropdown-content a:hover {
			background-color: #d4e8f8;
		}

		/* Show the dropdown menu on hover */
		.dropdown:hover .dropdown-content {
			display: block;
		}

        .navbar.scrolled {
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .navbar a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            padding: 0.5em 1em;
            margin: 0.5em;
        }
        .navbar a:hover {
            background-color: #2c6fa3;
            border-radius: 5px;
        }
        .banner-container {
            position: relative;
            text-align: center;
        }
        .banner {
            width: 100%;
            height: auto;
        }
        .shop-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #3a8bcd;
            color: white;
            padding: 1em 2em;
            font-size: 1.2em;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-decoration: none;
            transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
        }
        .shop-button:hover {
            background-color: #2c6fa3;
            transform: translate(-50%, -50%) scale(1.05);
            box-shadow: 0 0 15px rgba(58, 139, 205, 0.7);
        }
        .hero {
            text-align: center;
            padding: 2em;
        }
        .hero h1 {
            color: #3a8bcd;
        }
        .collections {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2em;
            padding: 2em;
            flex-grow: 1;
        }
        .collection-item {
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            padding: 1em;
            text-align: center;
            transition: transform 0.3s, opacity 0.6s ease-out;
            opacity: 0;
            transform: translateY(20px);
        }
        .collection-item.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .collection-item:hover {
            transform: translateY(-5px);
        }
        .collection-item img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .collection-item h3 {
            margin-top: 0.5em;
            color: #3a8bcd;
        }
        footer {
            background-color: #3a8bcd;
            color: white;
            text-align: center;
            padding: 1em;
            margin-top: auto;
        }
		
		
       .product-container {
            display: flex;
			flex-wrap: wrap;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            padding: 3em;
            gap: 3em;
        }
        .product-image {
            width: 300px;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .product-details {
            max-width: 600px;
            text-align: left;
        }
        .product-details h1 {
            color: #3a8bcd;
            margin-bottom: 0.5em;
        }
        .product-details p {
            font-size: 1.1em;
            line-height: 1.6;
            color: #555;
        }
        .product-size {
            font-weight: bold;
            color: #3a8bcd;
            margin-top: 1em;
        }
        footer {
            background-color: #3a8bcd;
            color: white;
            text-align: center;
            padding: 1em;
            margin-top: auto;
        }


    .size-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin: 20px 0;
    }

    .size-button {
      background-color: white;
      border: 2px solid #3a8bcd;
      color: #3a8bcd;
      padding: 12px 24px;
      font-size: 16px;
      cursor: pointer;
      border-radius: 8px;
      transition: all 0.2s ease-in-out;
    }

    .size-button:hover {
      background-color: #e6f0fa;
    }

    .size-button.selected {
      background-color: #3a8bcd;
      color: white;
    }

    @media (max-width: 600px) {
      .size-button {
        flex: 1 1 40%;
        padding: 10px;
        font-size: 14px;
      }
    }


	.input-container {
		margin: 2em;
		text-align: center;
	}

	.input-label {
		font-size: 1.2em;
		margin-right: 0.5em;
		color: #3a8bcd;
	}

	.quantity-input {
		padding: 0.5em;
		width: 80px;
		border: 2px solid #3a8bcd;
		border-radius: 8px;
		font-size: 1em;
		text-align: center;
		margin-right: 1em;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
		transition: border-color 0.3s, box-shadow 0.3s;
	}

	.quantity-input:focus {
		border-color: #2c6fa3;
		box-shadow: 0 0 8px rgba(58, 139, 205, 0.5);
		outline: none;
	}

	.add-to-cart-btn {
		background-color: #3a8bcd;
		color: white;
		border: none;
		padding: 0.7em 1.7em;
		font-size: 1em;
		border-radius: 8px;
		cursor: pointer;
		transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
	}

	.add-to-cart-btn:hover {
		background-color: #2c6fa3;
		transform: scale(1.05);
		box-shadow: 0 4px 15px rgba(58, 139, 205, 0.5);
	}
		

	.product-gallery {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 2em;
	}

	.product-gallery img {
		width: 300px;
		height: auto;
		border-radius: 10px;
		box-shadow: 0 4px 8px rgba(0,0,0,0.2);
		margin-bottom: 1em;
	}

	.gallery-buttons button {
		background-color: #3a8bcd;
		color: white;
		border: none;
		padding: 0.5em 1.2em;
		margin: 0 0.5em;
		border-radius: 8px;
		font-size: 1em;
		cursor: pointer;
		transition: background-color 0.3s, transform 0.2s;
	}

	.gallery-buttons button:hover {
		background-color: #2c6fa3;
		transform: scale(1.05);
	}



        .collections2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2em;
            padding: 2em;
            flex-grow: 1;
        }
        .collection-item2 {
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            padding: 1em;
            text-align: center;
            transition: transform 0.3s, opacity 0.6s ease-out;
            opacity: 0;
            transform: translateY(20px);
        }
        .collection-item2.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .collection-item2:hover {
            transform: translateY(-5px);
        }
        .collection-item2 img {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .collection-item2 h3 {
            margin-top: 0.5em;
            color: #3a8bcd;
        }


        .cart-container {
            padding: 3em;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .cart-table {
            width: 80%;
            border-collapse: collapse;
            margin-bottom: 2em;
        }
        .cart-table th, .cart-table td {
            padding: 1em;
            text-align: center;
            border: 1px solid #ccc;
        }
        .cart-table th {
            background-color: #3a8bcd;
            color: white;
        }
        .cart-table td img {
            width: 100px;
            height: auto;
            border-radius: 8px;
        }
        .delete-btn {
            background-color: #e74c3c;
            color: white;
            border: none;
            padding: 0.5em;
            cursor: pointer;
            border-radius: 5px;
        }
        .delete-btn:hover {
            background-color: #c0392b;
        }

        .checkout-btn {
            background-color: #0cd104;
            color: white;
            border: none;
            padding: 0.5em;
            cursor: pointer;
            border-radius: 5px;
			height:100px;
			width:200px;
        }
        .checkout-btn:hover {
            background-color: #098f04;
        }
		
        .total-section {
            margin-top: 2em;
            text-align: center;
            font-size: 1.2em;
        }	
		
		.blue-button {
		  background-color: #3a8bcd; /* original blue */
		  color: white;
		  padding: 12px 24px;
		  border: none;
		  border-radius: 8px;
		  font-size: 16px;
		  cursor: pointer;
		  transition: background-color 0.3s ease;
		}

		.blue-button:hover {
		  background-color: #2f76b0; /* darker blue on hover */
		}
		
		
</style>
