Interior Doors
Sample Description
Sample Description
Sample Description
Sample Description
Sample Description
Sample Description
Sample Description
Sample Description
Sample Description
Sample Description
<!-- Contact Button -->
<button class="product-contact-btn" onclick="openProductPopup()">
Contact for Details
</button>
<!-- Popup Background -->
<div id="productPopup" class="product-popup-overlay">
<div class="product-popup-box">
<button class="product-popup-close" onclick="closeProductPopup()">×</button>
<h2>Contact Us About This Product</h2>
<p>
Please contact us for current availability, size options, and pricing.
</p>
<div class="product-contact-info">
<p><strong>Phone:</strong> <a href="tel:204XXXXXXX">204-XXX-XXXX</a></p>
<p><strong>Email:</strong> <a href="mailto:info@discountbuildingproducts.ca">info@discountbuildingproducts.ca</a></p>
<p><strong>Location:</strong> Winnipeg, MB</p>
</div>
<p class="product-popup-note">
Please mention the product name when contacting us.
</p>
</div>
</div>
<style>
.product-contact-btn {
background-color: #1f2933;
color: #ffffff;
border: none;
padding: 12px 22px;
font-size: 15px;
font-weight: 600;
border-radius: 6px;
cursor: pointer;
margin-top: 12px;
transition: all 0.2s ease;
}
.product-contact-btn:hover {
background-color: #000000;
transform: translateY(-1px);
}
.product-popup-overlay {
display: none;
position: fixed;
z-index: 999999;
left: 0;
top: 0;
width: 100%;
height: 100vh;
background: rgba(0, 0, 0, 0.65);
align-items: center;
justify-content: center;
padding: 20px;
}
.product-popup-box {
background: #ffffff;
max-width: 460px;
width: 100%;
border-radius: 14px;
padding: 32px 28px;
position: relative;
text-align: center;
box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
animation: popupFadeIn 0.25s ease;
}
.product-popup-box h2 {
margin-top: 0;
margin-bottom: 12px;
font-size: 24px;
color: #1f2933;
}
.product-popup-box p {
font-size: 15px;
line-height: 1.6;
color: #444444;
margin-bottom: 12px;
}
.product-contact-info {
background: #f5f5f5;
border-radius: 10px;
padding: 16px;
margin: 18px 0;
text-align: left;
}
.product-contact-info p {
margin: 8px 0;
}
.product-contact-info a {
color: #1f2933;
text-decoration: none;
font-weight: 600;
}
.product-contact-info a:hover {
text-decoration: underline;
}
.product-popup-note {
font-size: 14px;
color: #666666;
}
.product-popup-close {
position: absolute;
right: 14px;
top: 10px;
background: transparent;
border: none;
font-size: 30px;
line-height: 1;
cursor: pointer;
color: #555555;
}
.product-popup-close:hover {
color: #000000;
}
@keyframes popupFadeIn {
from {
opacity: 0;
transform: translateY(12px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
</style>
<script>
function openProductPopup() {
document.getElementById("productPopup").style.display = "flex";
}
function closeProductPopup() {
document.getElementById("productPopup").style.display = "none";
}
window.onclick = function(event) {
var popup = document.getElementById("productPopup");
if (event.target === popup) {
popup.style.display = "none";
}
};
</script>
This will close in 20 seconds