/* Pagina individuală Affiliate Store KUPIRO */

.kupiro-store-page {
	--kupiro-green: #0eaf90;
	--kupiro-green-dark: #078b73;
	--kupiro-coral: #ff6b57;
	--kupiro-text: #384149;
	--kupiro-muted: #6f777d;
	--kupiro-border: #e4e8ea;
	--kupiro-soft: #f6f7f7;
	padding: 28px 0 70px;
	color: var(--kupiro-text);
	background: #fff;
}

.kupiro-store-page *,
.kupiro-store-page *::before,
.kupiro-store-page *::after {
	box-sizing: border-box;
}

.kupiro-store-container {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 20px;
}

.kupiro-store-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	color: #899096;
	font-size: 13px;
}

.kupiro-store-breadcrumbs a {
	color: #6e767c;
	text-decoration: none;
}

.kupiro-store-breadcrumbs a:hover {
	color: var(--kupiro-green);
}

.kupiro-store-breadcrumbs.is-bottom {
	margin: 34px 0 0;
	padding-top: 18px;
	border-top: 1px solid var(--kupiro-border);
}

.kupiro-store-hero {
	display: block;
	padding: 26px;
	border: 1px solid var(--kupiro-border);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 26px rgba(34, 51, 58, 0.055);
}

.kupiro-store-hero.is-content-only {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.kupiro-store-logo-box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 150px;
	height: 126px;
	padding: 18px;
	border: 1px solid var(--kupiro-border);
	border-radius: 12px;
	background: #fff;
	text-align: center;
}

.kupiro-store-logo-box img {
	display: block;
	max-width: 100%;
	max-height: 72px;
	object-fit: contain;
}

.kupiro-store-logo-box strong {
	font-size: 22px;
	line-height: 1.2;
}

.kupiro-store-eyebrow {
	margin: 0 0 5px;
	color: var(--kupiro-green);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.kupiro-store-intro h1 {
	margin: 0;
	color: #2c343a;
	font-size: 28px;
	font-weight: 750;
	line-height: 1.22;
}

.kupiro-store-title-row {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px 18px;
}

.kupiro-store-title-row > span {
	color: #7b858c;
	font-size: 12px;
}

.kupiro-store-main-description {
	margin: 8px 0 0;
	color: #69747b;
	font-size: 13px;
	line-height: 1.5;
}

.kupiro-store-summary {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	margin-top: 13px;
	color: var(--kupiro-muted);
	font-size: 13px;
}

.kupiro-store-summary strong {
	color: var(--kupiro-green-dark);
	font-weight: 700;
}

.kupiro-store-summary span {
	position: relative;
}

.kupiro-store-summary span + span::before {
	position: absolute;
	top: 50%;
	left: -11px;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #b7bdc0;
	content: "";
	transform: translateY(-50%);
}

.kupiro-store-visit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-width: 174px;
	min-height: 48px;
	padding: 12px 18px;
	border-radius: 9px;
	color: #fff !important;
	background: var(--kupiro-green);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none !important;
	transition: background 0.18s ease, transform 0.18s ease;
}

.kupiro-store-visit:hover {
	color: #fff !important;
	background: var(--kupiro-green-dark);
	transform: translateY(-1px);
}

.kupiro-store-filters {
	display: flex;
	align-items: stretch;
	gap: 4px;
	margin: 25px 0 30px;
	border-bottom: 0;
	overflow-x: auto;
	scrollbar-width: none;
}

.kupiro-store-filters::-webkit-scrollbar {
	display: none;
}

.kupiro-store-filters button,
.kupiro-store-filters a {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 7px;
	min-height: 40px;
	padding: 0 22px;
	border: 0;
	border-radius: 8px;
	color: #586167;
	background: #f4f5f5;
	box-shadow: none;
	font-family: inherit;
	font-size: 14px;
	font-weight: 650;
	text-decoration: none;
	cursor: pointer;
}

.kupiro-store-filters button::after,
.kupiro-store-filters a::after {
	display: none;
}

.kupiro-store-filters button:hover,
.kupiro-store-filters button:focus,
.kupiro-store-filters button.is-active,
.kupiro-store-filters a:hover {
	color: #fff;
	background: var(--kupiro-green);
}

.kupiro-store-filters button.is-active::after,
.kupiro-store-filters a:hover::after {
	display: none;
}

.kupiro-store-filters button span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border-radius: 11px;
	color: #667078;
	background: rgba(255, 255, 255, 0.68);
	font-size: 11px;
}

.kupiro-store-filters button.is-active span,
.kupiro-store-filters button:hover span,
.kupiro-store-filters button:focus span {
	color: #fff;
	background: rgba(255, 255, 255, 0.18);
}

.kupiro-store-layout {
	display: grid;
	grid-template-areas: "offers sidebar";
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 28px;
	align-items: start;
}

.kupiro-store-offers {
	grid-area: offers;
}

.kupiro-store-sidebar {
	grid-area: sidebar;
}

.kupiro-store-list-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 16px;
}

.kupiro-store-list-heading h2 {
	margin: 0 0 4px;
	color: #30383e;
	font-size: 20px;
	font-weight: 750;
}

.kupiro-store-list-heading p {
	margin: 0;
	color: var(--kupiro-muted);
	font-size: 13px;
}

.kupiro-store-list-heading > span {
	flex: 0 0 auto;
	padding: 6px 10px;
	border-radius: 14px;
	color: var(--kupiro-green-dark);
	background: #e7f7f3;
	font-size: 12px;
	font-weight: 700;
}

.kupiro-offer-list {
	display: grid;
	gap: 14px;
}

.kupiro-offer-card {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr) 190px;
	gap: 18px;
	align-items: center;
	min-width: 0;
	padding: 18px;
	border: 1px solid var(--kupiro-border);
	border-radius: 13px;
	background: #fff;
	box-shadow: 0 5px 18px rgba(32, 48, 55, 0.045);
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.kupiro-offer-card:hover {
	border-color: #cbd5d7;
	box-shadow: 0 9px 25px rgba(32, 48, 55, 0.075);
}

.kupiro-offer-card[hidden] {
	display: none !important;
}

.kupiro-offer-card.is-expired {
	background: #fafafa;
	opacity: 0.76;
}

.kupiro-offer-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 96px;
	height: 96px;
	padding: 8px;
	border-radius: 50%;
	color: var(--kupiro-coral);
	background: #fff4f1;
	text-align: center;
}

.kupiro-offer-badge strong {
	max-width: 82px;
	overflow: hidden;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.05;
	text-overflow: ellipsis;
}

.kupiro-offer-badge span {
	margin-top: 5px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.kupiro-offer-content {
	min-width: 0;
}

.kupiro-offer-labels {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 6px;
}

.kupiro-offer-type,
.kupiro-offer-expired-label {
	color: var(--kupiro-green);
	font-size: 10px;
	font-weight: 750;
	letter-spacing: 0.04em;
}

.kupiro-offer-expired-label {
	color: #9a6262;
}

.kupiro-offer-content h2 {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.33;
}

.kupiro-offer-content h2 a {
	color: #30383e;
	text-decoration: none;
}

.kupiro-offer-content h2 a:hover {
	color: var(--kupiro-green-dark);
}

.kupiro-expandable-description {
	position: relative;
}

.kupiro-offer-description-wrap {
	margin-top: 7px;
	line-height: 1.45;
}

.kupiro-offer-description {
	display: inline;
	margin: 0;
	color: #666f75;
	font-size: 13px;
	line-height: inherit;
}

.kupiro-description-more {
	margin: 0;
	padding: 0;
	border: 0;
	color: var(--kupiro-green-dark);
	background: transparent;
	font: inherit;
	font-size: 12px;
	font-weight: 700;
	line-height: inherit;
	vertical-align: baseline;
	cursor: pointer;
}

.kupiro-description-more:hover,
.kupiro-description-more:focus,
.kupiro-description-more:active {
	border: 0;
	color: var(--kupiro-green-dark);
	background: transparent;
	box-shadow: none;
	outline: none;
}

.kupiro-expandable-description.is-expanded .kupiro-offer-description,
.kupiro-expandable-description.is-expanded .kupiro-voucher-description {
	display: inline;
	overflow: visible;
}

.kupiro-expandable-description.is-expanded .kupiro-description-more {
	display: none;
}

.kupiro-offer-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 14px;
	margin-top: 11px;
	color: #8a9297;
	font-size: 11px;
}

.kupiro-offer-verified {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: var(--kupiro-green-dark);
	font-weight: 650;
}

.kupiro-offer-verified svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.kupiro-offer-price {
	color: #30383e;
	font-weight: 700;
}

.kupiro-offer-price del {
	margin-left: 5px;
	color: #a4a9ac;
	font-weight: 400;
}

.kupiro-offer-action {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.kupiro-coupon-reveal,
.kupiro-offer-link {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 10px 15px;
	overflow: hidden;
	border: 0;
	border-radius: 8px;
	color: #fff !important;
	background: var(--kupiro-coral);
	font-size: 13px;
	font-weight: 750;
	text-align: center;
	text-decoration: none !important;
}

.kupiro-coupon-reveal {
	justify-content: flex-start;
	padding-right: 47px;
	font-family: inherit;
	cursor: pointer;
}

.kupiro-coupon-reveal small {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 100%;
	border-left: 1px dashed rgba(255, 255, 255, 0.72);
	color: #516067;
	background: #edf1f2;
	font-size: 11px;
	letter-spacing: 0.04em;
}

.kupiro-coupon-reveal.is-copied {
	justify-content: center;
	padding-right: 15px;
	background: var(--kupiro-green);
	letter-spacing: 0.04em;
}

.kupiro-coupon-reveal.is-copied small {
	display: none;
}

.kupiro-offer-link {
	gap: 8px;
	background: var(--kupiro-green);
}

.kupiro-coupon-reveal:hover,
.kupiro-offer-link:hover {
	filter: brightness(0.95);
}

.kupiro-offer-details {
	color: #7a8389;
	font-size: 11px;
	text-align: center;
	text-decoration: none;
}

.kupiro-offer-details:hover {
	color: var(--kupiro-green-dark);
}

.kupiro-store-empty {
	padding: 34px 20px;
	border: 1px dashed #d8dddf;
	border-radius: 12px;
	color: #737c82;
	background: #fafbfb;
	text-align: center;
}

.kupiro-store-empty.is-visible {
	display: block;
}

.kupiro-store-side-card {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: #fff;
}

.kupiro-store-side-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 218px;
	margin-bottom: 15px;
	padding: 5px;
	border: 1px solid #dfe4e7;
	border-radius: 9px;
	background: #fff;
}

.kupiro-store-side-logo img {
	display: block;
	width: 200px;
	max-width: 100%;
	height: 200px;
	max-height: 100%;
	object-fit: contain;
}

.kupiro-store-side-card h2,
.kupiro-store-rating h2,
.kupiro-store-side-section h2 {
	margin: 0 0 17px;
	color: #30383e;
	font-size: 18px;
	font-weight: 750;
	line-height: 1.28;
	text-align: left;
}

.kupiro-store-side-visit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 44px;
	margin-bottom: 10px;
	padding: 10px 14px;
	border: 0;
	border-radius: 8px;
	color: #fff !important;
	background: var(--kupiro-green);
	font-size: 13px;
	font-weight: 750;
	text-decoration: none !important;
}

.kupiro-store-side-visit:hover {
	color: #fff !important;
	background: var(--kupiro-green-dark);
}

.kupiro-store-side-visit svg {
	width: 17px;
	height: 17px;
	fill: currentColor;
}

.kupiro-store-rating,
.kupiro-store-side-section {
	margin-bottom: 32px;
}

.kupiro-store-rating h2 {
	margin-bottom: 8px;
}

.kupiro-rating-description {
	margin: 0 0 14px;
	color: #667078;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.55;
}

.kupiro-rating-row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.kupiro-rating-stars {
	display: flex;
	align-items: center;
	gap: 3px;
}

.kupiro-rating-stars button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 24px;
	padding: 0;
	border: 0;
	border-radius: 0;
	color: #cfd3d5;
	background: transparent !important;
	box-shadow: none !important;
	cursor: pointer;
}

.kupiro-rating-stars button:hover,
.kupiro-rating-stars button.is-filled,
.kupiro-rating-stars button.is-preview {
	color: #ff7a18;
}

.kupiro-rating-stars button:disabled {
	cursor: default;
}

.kupiro-rating-stars svg {
	width: 21px;
	height: 21px;
	fill: currentColor;
}

.kupiro-rating-row > p {
	margin: 0;
	color: #687178;
	font-size: 12px;
}

.kupiro-rating-row > p strong {
	color: #30383e;
	font-size: 14px;
}

.kupiro-rating-message {
	min-height: 15px;
	margin: 6px 0 0;
	color: var(--kupiro-green-dark);
	font-size: 11px;
}

.kupiro-store-side-about,
.kupiro-store-side-about div,
.kupiro-store-side-about p {
	color: #667078;
	font-size: 14px;
	line-height: 1.6;
}

.kupiro-store-side-about p:first-child {
	margin-top: 0;
}

.kupiro-store-side-about p:last-child {
	margin-bottom: 0;
}

.kupiro-store-contacts > a,
.kupiro-store-useful-links > a {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 10px;
	color: #657078;
	font-size: 13px;
	line-height: 1.4;
	text-decoration: none;
}

.kupiro-store-contacts > a:hover,
.kupiro-store-useful-links > a:hover {
	color: var(--kupiro-green-dark);
}

.kupiro-store-contacts > a svg {
	flex: 0 0 auto;
	width: 17px;
	height: 17px;
	fill: var(--kupiro-green);
}

.kupiro-store-socials {
	display: flex;
	gap: 8px;
	margin-top: 15px;
}

.kupiro-store-socials a,
.kupiro-store-socials span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	color: #7e878d;
	background: #f1f3f4;
	font-size: 15px;
	font-weight: 750;
	line-height: 1;
	text-decoration: none;
}

.kupiro-store-socials a:hover {
	color: #fff;
	background: var(--kupiro-green);
}

.kupiro-store-useful-links > a span {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	border: 2px solid var(--kupiro-green);
	border-radius: 50%;
	color: var(--kupiro-green);
	font-size: 9px;
	font-weight: 800;
}

.kupiro-store-side-categories > div {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.kupiro-store-side-categories a {
	display: inline-flex;
	padding: 7px 13px;
	border-radius: 9px;
	color: #5c666d;
	background: #f3f5f5;
	font-size: 11px;
	font-weight: 650;
	text-decoration: none;
}

.kupiro-store-side-categories a:hover {
	color: var(--kupiro-green-dark);
	background: #e8f7f3;
}

.kupiro-store-saving-tips ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.kupiro-store-saving-tips li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 0;
	padding: 0;
	color: #667078;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.45;
}

.kupiro-store-saving-tips li svg {
	flex: 0 0 auto;
	width: 17px;
	height: 17px;
	margin-top: 1px;
	fill: var(--kupiro-green);
}

.kupiro-store-saving-tips li span {
	min-width: 0;
}

.kupiro-store-saving-tips li strong {
	color: #30383e;
	font-weight: 700;
}

.kupiro-recommended-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 9px;
}

.kupiro-recommended-grid > a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	aspect-ratio: 1 / 1;
	padding: 8px;
	border: 1px solid #dfe4e7;
	border-radius: 6px;
	background: #fff;
	text-align: center;
	text-decoration: none;
}

.kupiro-recommended-grid > a:hover {
	border-color: #a9d9d0;
}

.kupiro-recommended-grid img {
	display: block;
	max-width: 92%;
	max-height: 58px;
	object-fit: contain;
}

.kupiro-recommended-grid span {
	overflow: hidden;
	color: #384149;
	font-size: 9px;
	font-weight: 700;
	text-overflow: ellipsis;
}

.kupiro-other-discount-stores ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.kupiro-other-discount-stores h2 {
	font-family: "DM Sans", Arial, sans-serif;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: normal;
	line-height: 1.25;
}

.kupiro-other-discount-stores li {
	position: relative;
	margin: 0 0 4px;
	padding: 0 0 0 22px;
}

.kupiro-other-discount-stores li:last-child {
	margin-bottom: 0;
}

.kupiro-other-discount-stores li::before {
	position: absolute;
	top: -2px;
	left: 1px;
	content: '›';
	color: var(--kupiro-green);
	font-size: 18px;
	font-weight: 800;
	line-height: 1.2;
}

.kupiro-other-discount-stores a {
	color: #384149;
	font-family: "DM Sans", Arial, sans-serif;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: normal;
	line-height: 1.5;
	text-decoration: none;
	word-spacing: normal;
}

.kupiro-other-discount-stores a:hover,
.kupiro-other-discount-stores a:focus {
	color: var(--kupiro-green-dark);
	text-decoration: underline;
}

.kupiro-store-affiliate-note {
	display: block;
	margin: 0 0 33px;
	color: #6b7883;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.45;
	text-align: left;
}

.kupiro-store-affiliate-note svg {
	display: inline-block;
	width: 14px;
	height: 14px;
	margin: 0 4px 0 0;
	fill: currentColor;
	vertical-align: -2px;
}

.kupiro-store-affiliate-note span {
	display: inline;
}

.kupiro-store-about {
	margin-top: 42px;
	padding: 28px;
	border: 1px solid var(--kupiro-border);
	border-radius: 13px;
	background: var(--kupiro-soft);
}

.kupiro-store-about h2 {
	margin: 0 0 12px;
	color: #30383e;
	font-size: 21px;
	font-weight: 750;
}

.kupiro-store-description,
.kupiro-store-about > p {
	color: #5f686e;
	font-size: 14px;
	line-height: 1.7;
}

.kupiro-store-description > *:first-child {
	margin-top: 0;
}

.kupiro-store-description > *:last-child {
	margin-bottom: 0;
}

.kupiro-store-howto ol {
	display: grid;
	gap: 9px;
	margin: 0;
	padding-left: 20px;
	color: #5f686e;
	font-size: 14px;
	line-height: 1.6;
}

body.kupiro-modal-open {
	overflow: hidden !important;
}

.kupiro-voucher-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 22px;
	background: rgba(24, 30, 32, 0.62);
	opacity: 0;
	transition: opacity 0.18s ease;
}

.kupiro-voucher-modal[hidden] {
	display: none !important;
}

.kupiro-voucher-modal.is-visible {
	opacity: 1;
}

.kupiro-voucher-dialog {
	position: relative;
	width: 100%;
	max-width: 580px;
	max-height: calc(100vh - 44px);
	padding: 31px 25px 29px;
	overflow-y: auto;
	border-radius: 13px;
	background: #fff;
	box-shadow: 0 20px 65px rgba(0, 0, 0, 0.25);
	opacity: 0;
	outline: none;
	transform: translateY(12px) scale(0.985);
	transition: opacity 0.18s ease, transform 0.18s ease;
}

.kupiro-voucher-modal.is-visible .kupiro-voucher-dialog {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.kupiro-voucher-close {
	position: absolute;
	top: 13px;
	right: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	color: #7c858a;
	background: transparent !important;
	box-shadow: none !important;
	font-family: Arial, sans-serif;
	font-size: 27px;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
}

.kupiro-voucher-close:hover {
	color: #30383e;
	background: #f3f5f5 !important;
}

.kupiro-voucher-copy-notice {
	margin: -11px 35px 12px 0;
	color: var(--kupiro-green-dark);
	font-size: 13px;
	font-weight: 700;
	text-align: center;
}

.kupiro-voucher-dialog > h2 {
	margin: 0 34px 19px;
	color: #30383e;
	font-size: 18px;
	font-weight: 650;
	line-height: 1.35;
	text-align: center;
}

.kupiro-voucher-code-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 128px;
	padding: 22px;
	border: 2px dashed #a8dfd4;
	border-radius: 10px;
	background: #dff8f3;
}

.kupiro-voucher-code-box > strong {
	margin-bottom: 14px;
	color: #8b9696;
	font-size: 25px;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1;
}

.kupiro-voucher-code-box > button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-width: 183px;
	min-height: 43px;
	padding: 10px 18px;
	border: 0;
	border-radius: 9px;
	color: #fff;
	background: var(--kupiro-coral) !important;
	box-shadow: none !important;
	font-family: inherit;
	font-size: 14px;
	font-weight: 750;
	cursor: pointer;
}

.kupiro-voucher-code-box > button:hover {
	filter: brightness(0.96);
}

.kupiro-voucher-code-box > button.is-copied {
	background: var(--kupiro-green) !important;
}

.kupiro-voucher-code-box > button svg,
.kupiro-voucher-continue svg {
	width: 17px;
	height: 17px;
	fill: currentColor;
}

.kupiro-voucher-feedback {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 16px;
	color: #4f585e;
	font-size: 14px;
}

.kupiro-voucher-feedback > button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	min-width: 58px;
	height: 36px;
	padding: 0 10px;
	border: 0;
	border-radius: 9px;
	box-shadow: none !important;
	font-size: 13px;
	cursor: pointer;
}

.kupiro-voucher-feedback > button svg {
	width: 17px;
	height: 17px;
	fill: currentColor;
}

.kupiro-voucher-feedback .is-yes {
	color: #65b94c;
	background: #f3fbef !important;
}

.kupiro-voucher-feedback .is-no {
	color: #dd665e;
	background: #fff1f1 !important;
}

.kupiro-voucher-feedback > button:disabled {
	opacity: 0.6;
	cursor: default;
}

.kupiro-voucher-feedback-message {
	min-height: 16px;
	margin: 6px 0 0;
	color: var(--kupiro-green-dark);
	font-size: 11px;
	text-align: center;
}

.kupiro-voucher-continue {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: max-content;
	min-width: 171px;
	min-height: 44px;
	margin: 4px auto 25px;
	padding: 10px 18px;
	border-radius: 9px;
	color: #30383e !important;
	background: #f5f6f6;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none !important;
}

.kupiro-voucher-continue:hover {
	color: var(--kupiro-green-dark) !important;
	background: #ebf7f4;
}

.kupiro-voucher-description-wrap {
	margin: -10px 34px 2px;
	line-height: 1.55;
	text-align: center;
}

.kupiro-voucher-description {
	display: inline;
	margin: 0;
	color: #606a70;
	font-size: 13px;
	line-height: inherit;
}

.kupiro-code-toast {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 9999;
	padding: 12px 18px;
	border-radius: 8px;
	color: #fff;
	background: #29343a;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	font-size: 13px;
	font-weight: 650;
	opacity: 0;
	pointer-events: none;
	transform: translateY(12px);
	transition: opacity 0.18s ease, transform 0.18s ease;
}

.kupiro-code-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 960px) {
	.kupiro-store-layout {
		grid-template-areas:
			"offers"
			"sidebar";
		grid-template-columns: minmax(0, 1fr);
	}

	.kupiro-store-sidebar {
		display: block;
		width: 100%;
		max-width: 380px;
		margin: 0 auto;
	}

	.kupiro-store-hero {
		display: block;
	}

	.kupiro-store-logo-box {
		width: 130px;
		height: 110px;
	}

	.kupiro-store-visit {
		grid-column: 1 / -1;
	}
}

@media (max-width: 700px) {
	.kupiro-store-page {
		padding: 18px 0 50px;
	}

	.kupiro-store-container {
		padding: 0 14px;
	}

	.kupiro-voucher-modal {
		align-items: flex-end;
		padding: 12px;
	}

	.kupiro-voucher-dialog {
		max-height: calc(100vh - 24px);
		padding: 28px 16px 22px;
		border-radius: 13px;
	}

	.kupiro-voucher-dialog > h2 {
		margin-right: 27px;
		margin-left: 27px;
		font-size: 16px;
	}

	.kupiro-voucher-description-wrap {
		margin-right: 15px;
		margin-left: 15px;
	}

	.kupiro-voucher-description {
		font-size: 12px;
	}

	.kupiro-voucher-code-box {
		min-height: 120px;
		padding: 18px 12px;
	}

	.kupiro-voucher-feedback {
		flex-wrap: wrap;
	}

	.kupiro-store-breadcrumbs {
		margin-bottom: 13px;
		font-size: 11px;
	}

	.kupiro-store-hero {
		grid-template-columns: 92px minmax(0, 1fr);
		gap: 15px;
		padding: 17px;
		border-radius: 12px;
	}

	.kupiro-store-logo-box {
		width: 92px;
		height: 84px;
		padding: 10px;
	}

	.kupiro-store-logo-box img {
		max-height: 55px;
	}

	.kupiro-store-eyebrow {
		font-size: 9px;
	}

	.kupiro-store-intro h1 {
		font-size: 19px;
	}

	.kupiro-store-summary {
		gap: 4px 12px;
		margin-top: 8px;
		font-size: 11px;
	}

	.kupiro-store-summary span + span::before {
		left: -7px;
	}

	.kupiro-store-visit {
		min-height: 44px;
	}

	.kupiro-store-filters {
		margin: 17px 0 22px;
	}

	.kupiro-store-filters button,
	.kupiro-store-filters a {
		min-height: 44px;
		padding: 0 13px;
		font-size: 12px;
	}

	.kupiro-store-filters button::after,
	.kupiro-store-filters a::after {
		right: 11px;
		left: 11px;
	}

	.kupiro-store-list-heading h2 {
		font-size: 17px;
	}

	.kupiro-store-list-heading p {
		font-size: 12px;
	}

	.kupiro-store-list-heading > span {
		display: none;
	}

	.kupiro-offer-card {
		grid-template-columns: 70px minmax(0, 1fr);
		gap: 13px;
		padding: 14px;
		border-radius: 11px;
	}

	.kupiro-offer-badge {
		width: 70px;
		height: 70px;
	}

	.kupiro-offer-badge strong {
		max-width: 60px;
		font-size: 17px;
	}

	.kupiro-offer-badge span {
		font-size: 8px;
	}

	.kupiro-offer-content h2 {
		font-size: 15px;
	}

	.kupiro-offer-description {
		font-size: 12px;
	}

	.kupiro-offer-action {
		grid-column: 1 / -1;
	}

	.kupiro-coupon-reveal,
	.kupiro-offer-link {
		min-height: 44px;
	}

	.kupiro-store-about {
		margin-top: 30px;
		padding: 20px;
	}

	.kupiro-code-toast {
		right: 14px;
		bottom: 14px;
		left: 14px;
		text-align: center;
	}
}

@media (max-width: 390px) {
	.kupiro-store-hero {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.kupiro-store-logo-box {
		width: 100%;
	}

	.kupiro-store-summary {
		justify-content: center;
	}
}
