.miresa-pp-wrap {
	margin: 18px 0 0;
	width: 100%;
	max-width: 100%;
	background: transparent;
	border: none;
	border-top: 1px solid #E6E1DA;
	border-radius: 0;
	box-shadow: none;
	padding: 16px 0;
	box-sizing: border-box;
}

.miresa-pp-section + .miresa-pp-section,
.miresa-pp-divider + .miresa-pp-section {
	margin-top: 0;
}

.miresa-pp-divider {
	border: none;
	border-top: 1px solid #E6E1DA;
	margin: 14px 0;
}

.miresa-pp-section-header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 4px;
}

.miresa-pp-icon {
	display: inline-flex;
	color: #545454;
	flex-shrink: 0;
}
.miresa-pp-icon svg {
	width: 17px;
	height: 17px;
	display: block;
}

.miresa-pp-section-title {
	font-size: 14px;
	font-weight: 600;
	color: #222222;
	margin: 0;
	line-height: 1.3;
}

.miresa-pp-section-desc {
	font-size: 12.5px;
	color: #767676;
	margin: 0 0 12px;
	line-height: 1.4;
}

.miresa-pp-cep-row {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.miresa-pp-input {
	flex: 1 1 160px;
	min-width: 140px;
	padding: 8px 10px;
	border: 1px solid #E4E4E4;
	border-radius: 6px;
	font-size: 13px;
	font-family: inherit;
	color: #222222;
	background: #fff;
	box-sizing: border-box;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.miresa-pp-input::placeholder {
	color: #A8A8A8;
}
.miresa-pp-input:focus {
	outline: none;
	border-color: #007476;
	box-shadow: 0 0 0 3px rgba(0, 116, 118, 0.12);
}

.miresa-pp-btn {
	flex: 0 0 auto;
	padding: 8px 14px;
	background: #007476;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 12.5px;
	font-weight: 500;
	font-family: inherit;
	cursor: pointer;
	transition: opacity 0.15s ease;
}
.miresa-pp-btn:hover {
	opacity: 0.88;
}
.miresa-pp-btn:focus-visible {
	outline: 2px solid #007476;
	outline-offset: 2px;
}
.miresa-pp-btn:disabled {
	opacity: 0.6;
	cursor: default;
}

.miresa-pp-result {
	font-size: 13px;
	margin: 10px 0 0;
	min-height: 0;
	color: #222222;
	line-height: 1.5;
}
.miresa-pp-result:empty {
	margin: 0;
}
.miresa-pp-result.miresa-pp-error {
	color: #b3261e;
}
.miresa-pp-result-label {
	display: block;
	color: #767676;
	font-size: 12px;
}
.miresa-pp-result-value {
	display: block;
	color: #1a1a1a;
	font-size: 14px;
	font-weight: 600;
	margin-top: 2px;
}

.miresa-pp-note {
	font-size: 12px;
	color: #8A8A8A;
	margin: 8px 0 0;
	line-height: 1.4;
}

.miresa-pp-toggle {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: none;
	border: none;
	color: #007476;
	font-size: 12.5px;
	font-weight: 500;
	font-family: inherit;
	cursor: pointer;
	padding: 0;
	margin-top: 8px;
}
.miresa-pp-toggle:focus-visible {
	outline: 2px solid #007476;
	outline-offset: 2px;
}
.miresa-pp-chevron {
	width: 14px;
	height: 14px;
	transition: transform 0.25s ease;
}
.miresa-pp-toggle[aria-expanded="true"] .miresa-pp-chevron {
	transform: rotate(180deg);
}

.miresa-pp-pix-content {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.32s ease, opacity 0.24s ease;
}
.miresa-pp-pix-content.is-open {
	max-height: 480px;
	opacity: 1;
}
.miresa-pp-pix-content-inner {
	font-size: 12px;
	color: #6B6B6B;
	line-height: 1.55;
	padding-top: 10px;
}
.miresa-pp-pix-content-inner p {
	margin: 0 0 8px;
}
.miresa-pp-pix-content-inner ul {
	margin: 4px 0 8px 18px;
	padding: 0;
}
.miresa-pp-pix-content-inner strong {
	color: #222222;
}

@media (max-width: 600px) {
	.miresa-pp-wrap {
		max-width: 100%;
	}
	.miresa-pp-input,
	.miresa-pp-btn {
		flex: 1 1 100%;
	}
}

/* ------------------------------------------------------------------ */
/* Product gallery layout refinement (desktop only, >1024px).          */
/* Purely visual: widens the gallery column and removes the internal   */
/* horizontal padding around the main image so it fills the column.    */
/* Does not touch mobile/tablet layout, image markup, zoom, lightbox   */
/* or thumbnail behaviour - only column width and container padding.   */
/* ------------------------------------------------------------------ */
@media (min-width: 1025px) {
	.miresa-product-main.miresa-product-main {
		grid-template-columns: minmax(0px, 54fr) minmax(360px, 46fr) !important;
	}

	body.single-product .miresa-product-gallery.miresa-product-gallery {
		padding-left: 0px !important;
		padding-right: 0px !important;
	}
}
