/* ==========================================================================
   INSTAGRAM POPUP STYLES
   Loaded conditionally when Instagram popup theme mod is enabled
   ========================================================================== */
.instagram-popup {
	width: 700px;
	height: 500px;
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	position: relative;
}
.popup-title {
	margin-bottom: 1.5rem !important;
	font-size: 1.5rem;
}
.popup-image {
	height: 50%;
	width: 100%;
	overflow: hidden;
	margin-top: 60px;
}
.popup-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.popup-content {
	height: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 20px;
}
.instagram-btn {
	background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
	color: white;
	border: none;
	padding: 10px 18px;
	border-radius: 5px;
	font-weight: bold;
	font-size: 16px;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.instagram-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	color: #fff;
}
.close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: rgba(255, 255, 255, 0.7);
	border: none;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index: 10;
}