/* Buy X Get Y (BOGO v2) */
.aws-b3g1-wrap {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}
.aws-b3g1-badge {
	display: inline-flex;
	align-items: center;
	padding: 5px 14px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .2px;
	border-radius: 999px;
	box-shadow: 0 3px 8px rgba(0,0,0,.08);
}
.aws-b3g1-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 26px;
	border: none;
	cursor: pointer;
	font-weight: 700;
	font-size: 15px;
	background-image: linear-gradient(135deg, #e11d48, #be123c);
	color: #fff;
	border-radius: 10px;
	transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
	box-shadow: 0 6px 16px rgba(225,29,72,.25);
}
.aws-b3g1-btn .aws-icon { display: inline-flex; align-items: center; }
.aws-b3g1-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(225,29,72,.32); opacity: 1; }
.aws-b3g1-btn:active { transform: translateY(0); }
.aws-b3g1-btn.aws-loading { opacity: .65; pointer-events: none; transform: none; }

.aws-b3g1-btn .aws-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	line-height: 1;
}
.aws-b3g1-btn .aws-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.aws-b3g1-price {
	display: flex;
	align-items: baseline;
	gap: 10px;
}
.aws-b3g1-price-now {
	font-size: 18px;
	font-weight: 700;
	color: #16a34a;
}
.aws-b3g1-price-old {
	font-size: 14px;
	color: #dc2626;
	text-decoration: line-through;
}

.aws-b3g1-message {
	margin-top: 2px;
	padding: 10px 14px;
	border-radius: 8px;
	font-size: 13px;
	max-width: 320px;
}
.aws-b3g1-message.success { background: #ecfdf5; color: #047857; }
.aws-b3g1-message.error { background: #fef2f2; color: #dc2626; }

/* Product Suggestions */
.aws-suggestions { margin: 30px 0; }
.aws-suggestions-title { margin: 0 0 16px; font-size: 20px; font-weight: 700; }
.aws-suggestions-items {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.aws-suggestions-list .aws-suggestions-items { grid-template-columns: 1fr; }
.aws-suggestions-carousel .aws-suggestions-items {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	gap: 20px;
}
.aws-suggestions-carousel .aws-suggestion-card { flex: 0 0 240px; scroll-snap-align: start; }

.aws-suggestion-card {
	background: #fff;
	border: 1px solid #eef0f5;
	border-radius: 10px;
	overflow: hidden;
	transition: box-shadow .2s ease;
}
.aws-suggestion-card:hover { box-shadow: 0 8px 20px rgba(15,23,42,.08); }
.aws-suggestion-image img { width: 100%; height: auto; display: block; }
.aws-suggestion-body { padding: 16px; }
.aws-suggestion-name {
	display: block;
	font-weight: 600;
	color: #1e293b;
	text-decoration: none;
	margin-bottom: 6px;
}
.aws-suggestion-price { font-size: 14px; margin-bottom: 12px; }
.aws-suggestion-btn {
	display: inline-block;
	width: 100%;
	text-align: center;
	padding: 9px 14px;
	background: #4f46e5;
	color: #fff;
	border-radius: 6px;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
}

/* Sale badge */
.aws-sale-badge {
	display: inline-block;
	background: #dc2626;
	color: #fff;
	padding: 4px 10px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 700;
}

/* Notifications popup — colors/typography driven by CSS variables set inline
   from the "Notification Style Settings" admin panel. */
#aws-notif-container {
	position: fixed;
	z-index: 99999;
	max-width: 320px;
	font-family: var(--aws-notif-font, inherit);
}
.aws-notif-pos-bottom-left { left: 20px; bottom: 20px; }
.aws-notif-pos-bottom-right { right: 20px; bottom: 20px; }
.aws-notif-pos-top-left { left: 20px; top: 20px; }
.aws-notif-pos-top-right { right: 20px; top: 20px; }

.aws-notif-popup {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--aws-notif-bg, #fff);
	color: var(--aws-notif-color, #1e293b);
	border: var(--aws-notif-border, none);
	border-radius: var(--aws-notif-radius, 10px);
	box-shadow: 0 10px 30px rgba(15,23,42,.15);
	padding: var(--aws-notif-padding, 12px 16px);
	opacity: 0;
	transform: translateY(10px);
	transition: all .35s ease;
	font-family: inherit;
	text-decoration: none;
	cursor: pointer;
}
.aws-notif-popup.show { opacity: 1; transform: translateY(0); }
.aws-notif-icon {
	width: 36px; height: 36px;
	border-radius: 50%;
	background: #ecfdf5;
	color: #16a34a;
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
	font-size: 16px;
}
.aws-notif-text { font-size: 13px; line-height: 1.4; color: inherit; }
.aws-notif-text strong { font-weight: 700; }
.aws-notif-meta { font-size: 11px; opacity: .65; margin-top: 2px; }
.aws-notif-cta { font-size: 11px; opacity: .55; margin-top: 2px; font-style: italic; }

.aws-editor-notice {
	padding: 14px;
	background: #fff7ed;
	border: 1px dashed #fdba74;
	color: #9a3412;
	font-size: 13px;
	border-radius: 8px;
}

@media (max-width: 767px) {
	.aws-suggestions-items { grid-template-columns: repeat(2, 1fr) !important; }
}
