.woopluging-box {
	display: inline-block;
	padding: 12px 16px;
	border: 1px solid #dcdcde;
	border-radius: 8px;
	background: #f6f7f7;
	color: #1d2327;
	font-weight: 600;
}
.clFullPage {
	display: block;
	width: 100%;
	min-height: 50vh;
	height: auto;
	background: #f6f7f7;
	color: #1d2327;
	font-weight: 600;
	
}

#ibsStoreSection .ibs-store-grid,
#dvOutanding .ibs-store-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
}

#ibsStoreSection .ibs-store-card,
#dvOutanding .ibs-store-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

#ibsStoreSection .ibs-store-image,
#dvOutanding .ibs-store-image {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 8px;
}

#ibsStoreSection .ibs-store-title,
#dvOutanding .ibs-store-title {
	font-size: 16px;
	line-height: 1.2;
	margin: 0;
}

#ibsStoreSection .ibs-store-price,
#dvOutanding .ibs-store-price {
	font-size: 18px;
	font-weight: 700;
	color: #111827;
}

#ibsStoreSection .ibs-store-cart-btn,
#dvOutanding .ibs-store-cart-btn {
	margin-top: auto;
	text-align: center;
}

#ibsStoreSection .ibs-store-empty,
#dvOutanding .ibs-store-empty {
	padding: 12px;
	border: 1px dashed #d1d5db;
	border-radius: 8px;
	background: #fff;
}

/* Destacados: 10% mas grandes y visualmente resaltados */
#dvOutanding .ibs-store-grid {
	grid-template-columns: repeat(auto-fill, minmax(242px, 1fr));
}

#dvOutanding .ibs-store-card {
	border-color: #f59e0b;
	box-shadow: 0 10px 24px rgba(245, 158, 11, 0.18);
	background: linear-gradient(180deg, #fffdfa 0%, #ffffff 100%);
	transform: translateY(0);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

#dvOutanding .ibs-store-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 28px rgba(245, 158, 11, 0.24);
}

#dvOutanding .ibs-store-title {
	color: #92400e;
}

