.ice-dropdown-card {
	max-width: 480px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba( 0, 0, 0, 0.08 );
	background: #ffffff;
}

/* ---------- Header (Normal / Collapsed state) ---------- */
.ice-card-header {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px;
	cursor: pointer;
	background: #ffffff;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

.ice-thumb-wrap {
	flex: 0 0 64px;
	width: 64px;
	height: 64px;
	border-radius: 12px;
	overflow: hidden;
}

.ice-thumb-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ice-header-text {
	flex: 1 1 auto;
	min-width: 0;
}

.ice-heading {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
}

.ice-desc {
	margin: 4px 0 0;
	font-size: 14px;
	line-height: 1.5;
}

.ice-toggle-icon {
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.25s ease;
	color: #1a1a1a;
}

.ice-toggle-icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ice-dropdown-card.ice-open .ice-toggle-icon {
	transform: rotate( 180deg );
}

/* ---------- Body (Dropdown / Expanded state) ---------- */
.ice-card-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: #ffffff;
}

/* CSS-only fallback in case JS load na ho, taake default-open card phir bhi dikhe */
.ice-dropdown-card.ice-open > .ice-card-body {
	max-height: 3000px;
}

.ice-body-inner {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 18px 16px;
	box-sizing: border-box;
}

.ice-body-image-wrap {
	flex: 0 0 auto;
	overflow: hidden;
	border-radius: 12px;
}

.ice-body-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ice-body-text {
	flex: 1 1 auto;
	min-width: 0;
}

.ice-heading-body {
	margin-bottom: 8px;
}

.ice-desc-body p {
	margin: 0 0 10px;
}

.ice-desc-body p:last-child {
	margin-bottom: 0;
}

.ice-desc-body ul,
.ice-desc-body ol {
	margin: 0 0 10px;
	padding-left: 20px;
}

/* Note: mobile stacking ab widget ke "Image Position" (Style tab) responsive
control se control hota hai — har device ke liye position, alignment,
text-align, image width/height sab alag se set kiye ja sakte hain. */
