<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shop Collection</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
}
.video-container {
width: 100%;
max-width: 800px;
margin: 20px 0;
}
.video-container iframe {
width: 100%;
height: 450px;
}
.shop-collections {
width: 100%;
max-width: 1200px;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.collection-item {
margin: 10px;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
width: 200px;
text-align: center;
}
</style>
</head>
<body>
<!-- Embed the video at the top -->
<div class="video-container">
<iframe width="560" height="315" src="https://www.youtube.com/embed/ZCGppijWhRw?si=CsZUApqOK22gbP16" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<!-- Shop collections section -->
<div class="shop-collections">
<div class="collection-item">Collection 1</div>
<div class="collection-item">Collection 2</div>
<div class="collection-item">Collection 3</div>
<div class="collection-item">Collection 4</div>
<!-- Add more collection items as needed -->
</div>
</body>
</html>