<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Brushed Gold Collection</title>
<style>
/* General page and body styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
text-align: center;
overflow-x: hidden; /* Prevent horizontal scroll */
}
.collection-container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
/* Black Friday Banner using the right half of the image */
.black-friday-banner {
width: 100%; /* Full width */
height: 75px; /* Increased height of the black ribbon (1.5 times original size) */
background-color: #000; /* Black background */
background-image: url('https://www.aguacanada.com/cdn/shop/files/BANNIERE_Plan_de_travail_1_copie.jpg?v=1732734782&width=1500'); /* Use original image URL */
background-repeat: repeat-x; /* Repeat the image horizontally */
background-size: auto 75px; /* Resize image to fit the height (75px) */
background-position: right center; /* Shift the image to show only the right half */
display: flex; /* Using flexbox to center text */
justify-content: center; /* Center the banner content */
align-items: center;
margin-bottom: 5px; /* Space between the banner and the "BRUSHED GOLD" text */
}
/* Styling for the "BRUSHED GOLD" label */
.gold-label {
font-family: 'Helvetica', sans-serif;
font-size: 36px; /* Increased font size */
font-weight: bold;
color: #333;
margin-top: 40px; /* Increased space between the banner and BRUSHED GOLD text */
margin-bottom: 20px; /* Increased space below BRUSHED GOLD text */
}
/* Container for the images and their text */
.category-container {
display: flex;
justify-content: center;
flex-wrap: wrap; /* Allow items to wrap onto the next line */
gap: 42px; /* Increased gap between images */
margin-bottom: 20px; /* Increased space below the images */
}
/* Each image with text centered below */
.category-item {
text-align: center; /* Centers the text under each image */
border: none; /* Remove any border under the image */
flex: 0 0 18%; /* Makes each item 18% width */
}
.category-image {
width: 180px; /* Image width */
height: 120px; /* Image height */
object-fit: cover; /* Ensures the images are cropped and scaled proportionally */
cursor: pointer;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}
.category-image:hover {
transform: scale(1.05);
}
.category-text {
margin-top: 10px;
font-size: 16px;
font-weight: bold;
color: #333;
text-decoration: none; /* Remove underline */
}
/* Remove the sidebar filters */
.sidebar, .filter, .shopify-section .filter-wrapper, .filters-bar, .filter-panel {
display: none !important;
}
/* Reduced space between images and the first row of products */
.product-list {
margin-top: 1px;
}
</style>
</head>
<body>
<div class="collection-container">
<!-- Black Friday Banner with Cropped Image -->
<div class="black-friday-banner"></div>
<!-- BRUSHED GOLD Label above the images -->
<div class="gold-label">BRUSHED GOLD</div>
<!-- Category Images Section -->
<div class="category-container">
<!-- Sinks Image and Text -->
<a href="/sinks" class="category-item">
<img src="https://www.aguacanada.com/cdn/shop/products/FRIDO-GDsite.jpg?v=1607376291&width=180" alt="Sinks" class="category-image">
<div class="category-text">Sinks</div>
</a>
<!-- Bathtubs Image and Text -->
<a href="/bathtubs" class="category-item">
<img src="https://www.aguacanada.com/cdn/shop/files/Brisca-GD-GABARIT-1500X1500.jpg?v=1706043438&width=600" alt="Bathtubs" class="category-image">
<div class="category-text">Bathtubs</div>
</a>
<!-- Showers Image and Text -->
<a href="/showers" class="category-item">
<img src="https://www.aguacanada.com/cdn/shop/files/CLD-36GD-II.jpg?v=1700844612&width=600" alt="Showers" class="category-image">
<div class="category-text">Showers</div>
</a>
<!-- Faucets Image and Text -->
<a href="/faucets" class="category-item">
<img src="https://www.aguacanada.com/cdn/shop/files/VANIKA-GD.jpg?v=1700847475&width=600" alt="Faucets" class="category-image">
<div class="category-text">Faucets</div>
</a>
<!-- Accessories Image and Text -->
<a href="/accessories" class="category-item">
<img src="https://www.aguacanada.com/cdn/shop/files/DAPHNE-GD_18131ab9-3927-4be9-8eee-46ca2b00b5e9.jpg?v=1701791222&width=700" alt="Accessories" class="category-image">
<div class="category-text">Accessories</div>
</a>
<!-- Toilets Image and Text (Placeholder) -->
<a href="/toilets" class="category-item">
<img src="https://via.placeholder.com/180" alt="Toilets" class="category-image">
<div class="category-text">Toilets</div>
</a>
<!-- Vanities Image and Text (Placeholder) -->
<a href="/vanities" class="category-item">
<img src="https://via.placeholder.com/180" alt="Vanities" class="category-image">
<div class="category-text">Vanities</div>
</a>
</div>
<!-- Products Section (example) -->
<div class="product-list">
<!-- Product details go here -->
</div>
</div>
</body>
</html>