/* Container and Header */
.pr-3856-wrapper {
	width: 100%;
	font-family: inherit;
}

.pr-3856-wrapper * {
	box-sizing: border-box;
}

.pr-3856-header {
	margin-bottom: 40px;
}

.pr-3856-header-subtitle {
	display: flex;
	align-items: center;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #7A7A7A;
	margin-bottom: 10px;
}

.pr-3856-line {
	height: 1px;
	background-color: #dcdcdc;
	width: 40px;
	display: inline-block;
	margin: 0 15px 0 0;
}
.pr-3856-line:last-child {
	margin: 0 0 0 15px;
}

.pr-3856-header-title {
	font-size: 36px;
	margin: 0;
}

.pr-3856-header-title-normal {
	font-weight: 400;
	color: #333;
}

.pr-3856-header-title-focus {
	font-weight: 600; /* Subtle default distinction */
	color: #333;
}

/* Grid Layout */
.pr-3856-grid {
	display: flex;
	flex-wrap: nowrap;
	gap: 0; /* Default gap 0, overridden by widget settings */
	overflow-x: auto;
}

.pr-3856-step {
	flex: 1;
	min-width: 220px;
	display: flex;
	flex-direction: column;
	border: 1px solid transparent;
	background-color: #fff;
	padding: 0 !important;
	margin: 0 !important;
	border-radius: 0;
	overflow: hidden;
}

.pr-3856-step.is-current {
	border-color: #637651;
}

/* Image Wrap */
.pr-3856-step-image-wrap {
	position: relative;
	background-color: #f5f5f5; /* Default background, overridden by settings */
	width: 100%;
	max-width: 100%;
	aspect-ratio: 3 / 4; 
	height: auto;
	overflow: hidden; 
	margin: 0 !important;
	padding: 0 !important; /* Removed padding to let image touch edges */
	display: flex;
	align-items: center;
	justify-content: center;
	border: none !important;
}

.pr-3856-step.is-current .pr-3856-step-image-wrap {
	background-color: #e8ede1;
}

.pr-3856-step-image-wrap img {
	display: block;
	width: 100% !important; /* Changed to 100% to fill width */
	height: 100% !important;
	max-width: 100% !important; 
	max-height: 100% !important;
	object-fit: cover !important; /* Back to cover to ensure no empty gaps if image ratio differs */
	object-position: center;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
}

/* Badge */
.pr-3856-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	background-color: #637651;
	color: #fff;
	font-size: 10px;
	font-weight: bold;
	padding: 4px 8px;
	border-radius: 2px;
	letter-spacing: 1px;
	z-index: 2;
}

/* Content Area */
.pr-3856-step-content {
	background-color: #fff;
	padding: 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	margin: 0 !important;
	width: 100%;
}

.pr-3856-step-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #888;
	margin-bottom: 8px;
}

.pr-3856-title {
	font-size: 16px;
	margin: 0 0 5px 0;
	color: #333;
	font-weight: 500;
}

.pr-3856-subtitle {
	font-size: 13px;
	color: #999;
	margin-bottom: 20px;
}

.pr-3856-footer {
	margin-top: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.pr-3856-price {
	font-size: 18px;
	color: #333;
}
.pr-3856-price del {
	font-size: 14px;
	color: #aaa;
	margin-left: 5px;
}

/* Add Button */
.pr-3856-add-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 1px solid #ddd;
	border-radius: 50%;
	color: #333;
	text-decoration: none;
	font-size: 20px;
	line-height: 0;
	padding: 0;
	transition: all 0.2s;
}

.pr-3856-add-btn:hover {
	background-color: #333;
	color: #fff;
	border-color: #333;
}

/* Responsive */
@media (max-width: 768px) {
	.pr-3856-grid {
		flex-direction: column;
	}
}