/* Newsletter Popup */
.popup-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: none;
}
.popup-wrapper.show {
	display: block;
}
.popup-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
}
.popup-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: var(--light-surface, #FFF7F9);
	padding: 40px;
	border-radius: 15px;
	width: 70%;
	max-width: 400px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	border: 1px solid var(--border-pink, #F0D0DC);
}

.popup-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #999;
	transition: color 0.3s;
}

.popup-close:hover {
	color: var(--dark-accent, #C8005A);
}

.popup-content {
	text-align: center;
}

.popup-title {
	color: var(--dark-accent, #C8005A);
	margin-bottom: 10px;
	font-size: 22px;
	font-weight: 500;
}

.popup-text {
	color: #666;
	margin-bottom: 25px;
	font-size: 15px;
	line-height: 1.6;
}

.popup-form {
	margin-top: 10px;
}

.popup-input {
	width: 100%;
	padding: 13px;
	margin-bottom: 15px;
	border: 2px solid var(--border-pink, #F0D0DC);
	border-radius: 8px;
	font-size: 13px;
	box-sizing: border-box;
	transition: border-color 0.3s;
	background: var(--light-surface, #FFF7F9);
}

.popup-input:focus {
	outline: none;
	border-color: var(--primary, #F2B8C6);
}

.popup-checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 15px 0 20px;
	text-align: left;
}

.popup-checkbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
	cursor: pointer;
	accent-color: var(--primary, #F2B8C6);
}

.popup-checkbox label {
	color: #666;
	font-size: 13px;
	cursor: pointer;
}

.popup-button {
	width: 100%;
	padding: 15px;
	background: var(--primary, #F2B8C6);
	color: var(--dark-accent);
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	border: 1px solid var(--primary, #F2B8C6);
}

.popup-button:hover {
	background: var(--dark-accent, #C8005A);
	color: white;
	border-color: var(--dark-accent, #C8005A);
}

.popup-footer {
	color: #999;
	font-size: 12px;
	margin-top: 20px;
}

/* Success Message */
.popup-success {
	text-align: center;
	padding: 10px 0;
}

.success-icon {
	width: 60px;
	height: 60px;
	background: var(--primary, #F2B8C6);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
	color: #111111;
	font-size: 30px;
}

.success-title {
	color: #111111;
	margin-bottom: 10px;
	font-size: 24px;
}

.success-text {
	color: #666;
	margin-bottom: 20px;
	line-height: 1.6;
}

.success-button {
	padding: 12px 30px;
	background: var(--primary, #F2B8C6);
	color: #111111;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	border: 1px solid var(--primary, #F2B8C6);
}

.success-button:hover {
	background: var(--dark-accent, #C8005A);
	color: white;
	border-color: var(--dark-accent, #C8005A);
}

/* Mobile Responsive - Optimized */
@media (max-width: 480px) {
	.popup-container {
		padding: 25px 18px;
		width: 90%;
		max-width: 350px;
		border-radius: 12px;
	}

	.popup-title {
		font-size: 20px;
		margin-bottom: 8px;
	}

	.popup-text {
		font-size: 13px;
		margin-bottom: 20px;
		line-height: 1.5;
	}

	.popup-input {
		padding: 11px 12px;
		margin-bottom: 12px;
		font-size: 14px;
	}

	.popup-checkbox {
		margin: 12px 0 16px;
		gap: 8px;
	}

	.popup-checkbox label {
		font-size: 12px;
	}

	.popup-button {
		padding: 12px;
		font-size: 15px;
	}

	.popup-footer {
		font-size: 11px;
		margin-top: 16px;
	}

	/* Adjust close button for mobile */
	.popup-close {
		top: 12px;
		right: 12px;
		font-size: 22px;
	}

	/* Success message adjustments */
	.success-icon {
		width: 50px;
		height: 50px;
		font-size: 25px;
	}

	.success-title {
		font-size: 20px;
	}

	.success-text {
		font-size: 13px;
	}

	.success-button {
		padding: 10px 25px;
		font-size: 14px;
	}
}

/* Extra small devices (320px and below) */
@media (max-width: 380px) {
	.popup-container {
		padding: 20px 15px;
		width: 92%;
	}

	.popup-title {
		font-size: 18px;
	}

	.popup-text {
		font-size: 12px;
	}

	.popup-input {
		padding: 10px 12px;
		font-size: 13px;
	}

	.popup-button {
		padding: 11px;
		font-size: 14px;
	}
}

/* Section Header */
.cart-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.cart-title {
        font-size: 34px;
        margin: 0;
        white-space: nowrap;
    }
    .cart-header::after {
  content: "";
    flex: 1;
    height: 8px;                    
    margin-left: 20px;
    background-image: radial-gradient(circle, #F2B8C6 2px, transparent 2px);
    background-size: 15px 8px;       
    background-repeat: repeat-x;
    }

/* Card Styles */
.cart-card {
    text-align: center;
    background: #FFF7F9;
    padding: 10px;
    border-radius: 6px;
}

.cart-img-box {
    position: relative;
    height: 260px; /* Desktop default */
    margin-bottom: 20px;
}

.bg-panel {
    position: absolute;
    width: 100%;
    height: 85%;
    background: #ead1d1;
    bottom: 0;
    left: 0;
    z-index: 1;
    border-radius: 6px;
}

.cart-img-box img {
    position: relative;
    z-index: 2;
    width: 85%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.cart-text {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.cart-text a {
    color: #C8005A;
    text-decoration: none;
}

/* Tablet */
@media (max-width: 991px) {
    .cart-img-box {
        height: 200px;
    }
    .cart-title {
        font-size: 28px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .cart-img-box {
        height: 150px;
    }
    .cart-title {
        font-size: 24px;
    }
    .cart-text {
        font-size: 14px;
    }
}
/* HERO WRAPPER */
.hero-wrapper {
    min-height: 350px;      
    display: flex;
    width: 100%;
}

/* MAIN HERO BOX */
.editorsPicksSidebar.heroMode {
    background: #111111;
    color: #fff;
    overflow: visible;
    width: 100%;
}

/* INNER WRAPPER */
.hero-inner {
    padding: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    gap: 10px;
    margin-top: -50px;
}
.back-link {
    font-size: 12px;
    color: #f3a6b5;
    text-decoration: none;
    margin-bottom: 8px;
}
.hero-content {
    max-width: 480px;
}
.hero-tag {
    font-size: 11px;
    letter-spacing: 2px;
    color: #aaa;
    margin-bottom: 6px;
}

.hero-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}
.hero-desc {
    font-size: 14px;
    color: #bbb;
    line-height: 1.5;
    margin-bottom: 12px;
}
.hero-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.btn-primary,
.btn-outline {
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease; /* smooth hover */
}

/* PRIMARY BUTTON */
.btn-primary {
    background: #f4a6b7;
    color: #000;
}

.btn-primary:hover {
    background: #f3a6b5;
    color: #111111;
}

/* OUTLINE BUTTON */
.btn-outline {
    border: 1px solid #555;
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    background: #f3a6b5;
    color: #111111;
    border-color: #f3a6b5;
}

@media (max-width: 992px) {
    .hero-wrapper {
        min-height: auto;    
    }
    .hero-inner {
        justify-content: flex-start; 
        padding-bottom: 50px; 
        margin-top: -20px;   
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 576px) {
    .hero-inner {  
		margin-top: 15px !important;
    }
    .hero-title {
        font-size: 24px;
    }
}