body {
	margin: 0;
	background: #0c0c0c;
}

.outlet-home {
	--outlet-bg: #0c0c0c;
	--outlet-surface: #181818;
	--outlet-card: #222;
	--outlet-card-strong: #2b2b2b;
	--outlet-text: #fff;
	--outlet-muted: rgba(255, 255, 255, .68);
	--outlet-muted-soft: rgba(255, 255, 255, .45);
	--outlet-border: rgba(255, 255, 255, .12);
	--outlet-border-strong: rgba(255, 255, 255, .2);
	--outlet-accent: #ff7a1a;
	--outlet-accent-strong: #f2522e;
	--outlet-grad: linear-gradient(90deg, #f2522e 0%, #ff7a1a 100%);
	--outlet-ok: #3fbf6a;
	--outlet-warn: #ffb020;
	--outlet-font: "Helvetica Neue", "Inter", Arial, sans-serif;
	background: var(--outlet-bg);
	color: var(--outlet-text);
	font-family: var(--outlet-font);
	font-size: 16px;
	line-height: 1.55;
	min-height: 100vh;
	overflow-x: hidden;
}

.outlet-home *,
.outlet-home *::before,
.outlet-home *::after {
	box-sizing: border-box;
}

.outlet-home a {
	color: inherit;
	text-decoration: none;
}

.outlet-home img {
	display: block;
	max-width: 100%;
}

.outlet-wrap {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 20px;
}

.outlet-marquee {
	background: var(--outlet-grad);
	border-bottom: 1px solid rgba(0, 0, 0, .25);
	color: #fff;
	overflow: hidden;
	white-space: nowrap;
}

.outlet-marquee__track {
	animation: outlet-scroll 28s linear infinite;
	display: inline-flex;
	min-width: max-content;
	will-change: transform;
}

.outlet-marquee--static .outlet-marquee__track {
	animation: none;
	display: flex;
	justify-content: center;
	min-width: 0;
	width: 100%;
	will-change: auto;
}

.outlet-marquee__track span {
	align-items: center;
	display: inline-flex;
	font-size: 13px;
	font-weight: 700;
	padding: 9px 26px;
	text-transform: uppercase;
}

.outlet-marquee__track span::after {
	background: rgba(255, 255, 255, .7);
	border-radius: 50%;
	content: "";
	height: 5px;
	margin-left: 26px;
	width: 5px;
}

.outlet-marquee--static .outlet-marquee__track span::after {
	content: none;
}

@keyframes outlet-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.outlet-marquee__track {
		animation: none;
	}
}

.outlet-header {
	background: rgba(12, 12, 12, .94);
	border-bottom: 1px solid var(--outlet-border);
	position: sticky;
	top: 0;
	z-index: 20;
}

.outlet-topbar {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1120px;
	padding: 16px 20px;
}

.outlet-brand {
	display: flex;
	flex-direction: column;
	line-height: 1;
	min-width: 150px;
}

.outlet-brand b,
.outlet-footer b {
	font-size: 24px;
	font-weight: 800;
}

.outlet-brand em,
.outlet-footer em,
.outlet-hero h1 em {
	background: var(--outlet-grad);
	background-clip: text;
	font-style: normal;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.outlet-brand small {
	color: var(--outlet-muted);
	font-size: 10px;
	font-weight: 700;
	margin-top: 5px;
	text-transform: uppercase;
}

.outlet-nav {
	display: flex;
	gap: 24px;
}

.outlet-nav a {
	color: var(--outlet-muted);
	font-size: 14px;
	font-weight: 600;
	transition: color .15s ease;
}

.outlet-nav a:hover {
	color: #fff;
}

.outlet-top-cta {
	border: 1px solid var(--outlet-border-strong);
	border-radius: 999px;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	padding: 9px 16px;
	white-space: nowrap;
}

.outlet-hero {
	padding: 52px 0 34px;
}

.outlet-hero__inner {
	align-items: center;
	display: grid;
	gap: 40px;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
}

.outlet-eyebrow {
	align-items: center;
	color: var(--outlet-accent);
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	margin-bottom: 18px;
	text-transform: uppercase;
}

.outlet-eyebrow::before {
	background: var(--outlet-grad);
	border-radius: 2px;
	content: "";
	height: 2px;
	margin-right: 10px;
	width: 26px;
}

.outlet-hero h1 {
	font-size: 50px;
	font-weight: 800;
	line-height: 1.05;
	margin: 0;
	max-width: 760px;
}

.outlet-hero p {
	color: var(--outlet-muted);
	font-size: 16px;
	margin: 18px 0 0;
	max-width: 560px;
}

.outlet-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 26px;
}

.outlet-btn {
	align-items: center;
	border-radius: 999px;
	display: inline-flex;
	font-size: 15px;
	font-weight: 800;
	justify-content: center;
	min-height: 48px;
	padding: 13px 24px;
	transition: border-color .15s ease, filter .15s ease, transform .15s ease;
}

.outlet-btn:hover {
	transform: translateY(-1px);
}

.outlet-btn--primary {
	background: var(--outlet-grad);
	color: #fff;
}

.outlet-btn--ghost {
	border: 1px solid var(--outlet-border-strong);
	color: #fff;
}

.outlet-btn--ghost:hover {
	border-color: #fff;
}

.outlet-hero-art {
	align-items: center;
	aspect-ratio: 4 / 3;
	background:
		radial-gradient(90% 75% at 72% 18%, rgba(255, 122, 26, .28), transparent 60%),
		radial-gradient(90% 80% at 22% 82%, rgba(242, 82, 46, .22), transparent 58%),
		var(--outlet-card);
	border: 1px solid var(--outlet-border);
	border-radius: 8px;
	display: flex;
	justify-content: center;
	overflow: hidden;
	position: relative;
}

.outlet-hero-art>span {
	background: var(--outlet-grad);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 800;
	padding: 8px 14px;
	position: absolute;
	right: 18px;
	top: 18px;
	z-index: 1;
}

.outlet-hero-art>img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.outlet-flacon {
	filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .58));
	height: 190px;
	position: relative;
	width: 120px;
}

.outlet-flacon b,
.outlet-ph b {
	background: linear-gradient(180deg, #f2522e, #ff7a1a);
	border-radius: 7px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
}

.outlet-flacon .body {
	bottom: 0;
	height: 150px;
	width: 120px;
}

.outlet-flacon .neck {
	height: 26px;
	top: 20px;
	width: 46px;
}

.outlet-flacon .cap {
	background: #111;
	height: 22px;
	top: 0;
	width: 54px;
}

.outlet-trust {
	border-top: 1px solid var(--outlet-border);
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 46px;
	padding-top: 30px;
}

.outlet-trust>div {
	align-items: flex-start;
	display: flex;
	gap: 12px;
	min-width: 0;
}

.outlet-trust__icon {
	align-items: center;
	background: rgba(255, 122, 26, .13);
	border: 1px solid rgba(255, 122, 26, .34);
	border-radius: 8px;
	color: var(--outlet-accent);
	display: flex;
	flex: 0 0 38px;
	font-weight: 900;
	height: 38px;
	justify-content: center;
	width: 38px;
}

.outlet-trust p {
	margin: 0;
	min-width: 0;
}

.outlet-trust b {
	display: block;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.25;
}

.outlet-trust small {
	color: var(--outlet-muted);
	display: block;
	font-size: 13px;
	line-height: 1.35;
	margin-top: 4px;
}

.outlet-section {
	padding: 46px 0;
}

.outlet-section-head {
	align-items: flex-end;
	display: flex;
	gap: 18px;
	justify-content: space-between;
	margin-bottom: 28px;
}

.outlet-section-head h2 {
	font-size: 34px;
	font-weight: 800;
	line-height: 1.12;
	margin: 0;
}

.outlet-section-head p {
	color: var(--outlet-muted);
	font-size: 14px;
	margin: 6px 0 0;
}

.outlet-section-head>span {
	border: 1px solid var(--outlet-border);
	border-radius: 999px;
	color: var(--outlet-muted);
	flex: 0 0 auto;
	font-size: 12px;
	font-weight: 800;
	padding: 7px 14px;
}

.outlet-section-head--center {
	justify-content: center;
	text-align: center;
}

.outlet-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.outlet-card {
	background: var(--outlet-card);
	border: 1px solid var(--outlet-border);
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
	transition: border-color .15s ease, box-shadow .2s ease, transform .15s ease;
}

a.outlet-card:hover {
	border-color: var(--outlet-border-strong);
	box-shadow: 0 16px 40px -18px rgba(0, 0, 0, .8);
	transform: translateY(-2px);
}

.outlet-card__media {
	align-items: center;
	aspect-ratio: 1 / 1;
	background: radial-gradient(110% 100% at 50% 18%, #333, #1b1b1b);
	display: flex;
	justify-content: center;
	overflow: hidden;
	position: relative;
}

.outlet-card__media img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.outlet-badge {
	background: var(--outlet-grad);
	border-radius: 999px;
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	left: 12px;
	padding: 6px 12px;
	position: absolute;
	top: 12px;
	z-index: 1;
}

.outlet-badge--sold {
	background: rgba(0, 0, 0, .72);
	border: 1px solid var(--outlet-border-strong);
	color: rgba(255, 255, 255, .82);
	text-transform: uppercase;
}

.outlet-ph {
	filter: drop-shadow(0 14px 24px rgba(0, 0, 0, .55));
	height: 158px;
	position: relative;
	width: 96px;
}

.outlet-ph .body {
	background: linear-gradient(180deg, #4a4a4a, #343434);
	bottom: 0;
	height: 122px;
	width: 96px;
}

.outlet-ph .neck {
	background: linear-gradient(180deg, #4a4a4a, #343434);
	height: 22px;
	top: 18px;
	width: 38px;
}

.outlet-ph .cap {
	background: #151515;
	height: 18px;
	top: 0;
	width: 44px;
}

.outlet-ph span {
	color: rgba(255, 255, 255, .86);
	font-size: 11px;
	font-weight: 800;
	left: 0;
	position: absolute;
	right: 0;
	text-align: center;
	text-transform: uppercase;
	top: 86px;
}

.outlet-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 10px;
	padding: 16px;
}

.outlet-stars {
	align-items: center;
	display: flex;
	gap: 8px;
}

.outlet-stars span,
.outlet-review-score span,
.outlet-reviews article>span {
	color: var(--outlet-accent);
	font-size: 13px;
}

.outlet-stars small {
	color: var(--outlet-muted);
	font-size: 12px;
	font-weight: 700;
}

.outlet-card h3 {
	font-size: 18px;
	font-weight: 800;
	line-height: 1.2;
	margin: 0;
	overflow-wrap: anywhere;
}

.outlet-card p {
	color: var(--outlet-muted);
	font-size: 13px;
	line-height: 1.45;
	margin: 0;
}

.outlet-price {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: auto;
}

.outlet-price__now {
	font-size: 24px;
	font-weight: 900;
}

.outlet-price__old {
	color: var(--outlet-muted-soft);
	font-size: 15px;
	text-decoration: line-through;
}

.outlet-price__save {
	background: rgba(255, 122, 26, .12);
	border: 1px solid rgba(255, 122, 26, .28);
	border-radius: 999px;
	color: var(--outlet-accent);
	font-size: 11px;
	font-weight: 800;
	margin-left: auto;
	padding: 4px 9px;
}

.outlet-stock {
	align-items: center;
	color: var(--outlet-ok);
	display: flex;
	font-size: 13px;
	font-weight: 700;
	gap: 8px;
}

.outlet-stock span {
	background: var(--outlet-ok);
	border-radius: 50%;
	box-shadow: 0 0 0 3px rgba(63, 191, 106, .18);
	height: 8px;
	width: 8px;
}

.outlet-stock--low {
	color: var(--outlet-warn);
}

.outlet-stock--low span {
	background: var(--outlet-warn);
	box-shadow: 0 0 0 3px rgba(255, 176, 32, .18);
}

.outlet-stock--sold {
	color: var(--outlet-muted-soft);
}

.outlet-stock--sold span {
	background: var(--outlet-muted-soft);
	box-shadow: none;
}

.outlet-card__cta {
	background: var(--outlet-grad);
	border-radius: 8px;
	color: #fff;
	font-size: 14px;
	font-weight: 900;
	padding: 12px;
	text-align: center;
}

.outlet-card--sold .outlet-card__media {
	filter: grayscale(1) brightness(.58);
}

.outlet-card--sold .outlet-card__cta {
	background: #333;
	color: var(--outlet-muted-soft);
}

.outlet-why {
	background: var(--outlet-surface);
	border-bottom: 1px solid var(--outlet-border);
	border-top: 1px solid var(--outlet-border);
}

.outlet-why__grid,
.outlet-reviews {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.outlet-why__grid article,
.outlet-reviews article {
	background: var(--outlet-card);
	border: 1px solid var(--outlet-border);
	border-radius: 8px;
	padding: 22px;
}

.outlet-why__grid article>span {
	color: var(--outlet-accent);
	font-size: 13px;
	font-weight: 900;
}

.outlet-why__grid h3 {
	font-size: 18px;
	margin: 10px 0 8px;
}

.outlet-why__grid p,
.outlet-reviews p {
	color: var(--outlet-muted);
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

.outlet-review-score {
	align-items: center;
	display: flex;
	gap: 16px;
	margin-bottom: 26px;
}

.outlet-review-score strong {
	font-size: 44px;
	line-height: 1;
}

.outlet-review-score p {
	color: var(--outlet-muted);
	font-size: 13px;
	margin: 4px 0 0;
}

.outlet-reviews article>div {
	align-items: center;
	display: flex;
	gap: 11px;
	margin-top: 16px;
}

.outlet-reviews b {
	align-items: center;
	background: var(--outlet-grad);
	border-radius: 50%;
	display: flex;
	flex: 0 0 36px;
	font-size: 14px;
	height: 36px;
	justify-content: center;
	width: 36px;
}

.outlet-reviews strong,
.outlet-reviews small {
	display: block;
}

.outlet-reviews small {
	color: var(--outlet-muted);
	font-size: 12px;
}

.outlet-faq {
	margin: 0 auto;
	max-width: 780px;
}

.outlet-faq details {
	background: var(--outlet-card);
	border: 1px solid var(--outlet-border);
	border-radius: 8px;
	margin-bottom: 12px;
	overflow: hidden;
}

.outlet-faq summary {
	align-items: center;
	cursor: pointer;
	display: flex;
	font-size: 16px;
	font-weight: 800;
	gap: 16px;
	justify-content: space-between;
	list-style: none;
	padding: 18px 20px;
}

.outlet-faq summary::-webkit-details-marker {
	display: none;
}

.outlet-faq summary span {
	align-items: center;
	border: 1px solid var(--outlet-border-strong);
	border-radius: 50%;
	color: var(--outlet-accent);
	display: flex;
	flex: 0 0 22px;
	height: 22px;
	justify-content: center;
	transition: transform .2s ease;
	width: 22px;
}

.outlet-faq details[open] summary span {
	transform: rotate(45deg);
}

.outlet-faq details p {
	color: var(--outlet-muted);
	font-size: 14px;
	line-height: 1.65;
	margin: 0;
	padding: 0 20px 18px;
}

.outlet-footer {
	background: #050505;
	border-top: 1px solid var(--outlet-border);
	padding: 46px 0 30px;
}

.outlet-footer__top {
	border-bottom: 1px solid var(--outlet-border);
	display: grid;
	gap: 30px;
	grid-template-columns: 1.4fr 1fr 1fr;
	padding-bottom: 30px;
}

.outlet-footer p {
	color: var(--outlet-muted);
	font-size: 14px;
	line-height: 1.6;
	margin: 12px 0 0;
	max-width: 420px;
}

.outlet-footer h4 {
	color: var(--outlet-muted);
	font-size: 12px;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.outlet-footer nav a {
	color: rgba(255, 255, 255, .8);
	display: block;
	font-size: 14px;
	padding: 6px 0;
}

.outlet-footer nav a:hover {
	color: var(--outlet-accent);
}

.outlet-footer__bottom {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: space-between;
	padding-top: 20px;
}

.outlet-footer__bottom p {
	color: var(--outlet-muted-soft);
	font-size: 12px;
	margin: 0;
}

@media (max-width: 920px) {
	.outlet-nav {
		display: none;
	}

	.outlet-hero__inner {
		grid-template-columns: 1fr;
	}


	.outlet-hero h1 {
		font-size: 40px;
	}

	.outlet-trust {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.outlet-why__grid,
	.outlet-reviews {
		grid-template-columns: 1fr;
	}

	.outlet-footer__top {
		grid-template-columns: 1fr 1fr;
	}

	.outlet-footer__top>div {
		grid-column: 1 / -1;
	}
}

@media (max-width: 620px) {
	.outlet-wrap {
		padding: 0 16px;
	}

	.outlet-topbar {
		padding: 14px 16px;
	}

	.outlet-top-cta {
		display: none;
	}

	.outlet-hero {
		padding-top: 34px;
	}

	.outlet-hero h1 {
		font-size: 32px;
	}

	.outlet-grid {
		gap: 14px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.outlet-card__body {
		padding: 13px;
	}

	.outlet-card h3 {
		font-size: 15px;
	}

	.outlet-card p {
		display: none;
	}

	.outlet-price__now {
		font-size: 20px;
	}

	.outlet-price__save {
		display: none;
	}

	.outlet-section-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.outlet-section-head h2 {
		font-size: 28px;
	}

	.outlet-trust,
	.outlet-footer__top {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 420px) {
	.outlet-grid {
		grid-template-columns: 1fr;
	}

	.outlet-hero__cta {
		flex-direction: column;
	}

	.outlet-btn {
		width: 100%;
	}
}

/* Mobile-canvas layout: matches the reference videos/screenshots on every viewport. */
body {
	background: #2c2c2c;
}

.outlet-home {
	border-left: 1px solid rgba(255, 255, 255, .18);
	border-right: 1px solid rgba(255, 255, 255, .18);
	box-shadow: 0 0 0 1px rgba(0, 0, 0, .18);
	margin: 0 auto;
	max-width: 430px;
	width: 100%;
}

.outlet-wrap,
.outlet-topbar {
	max-width: none;
	padding-left: 16px;
	padding-right: 16px;
}

.outlet-marquee__track span {
	font-size: 11px;
	padding: 8px 18px;
}

.outlet-header {
	position: static;
}

.outlet-topbar {
	align-items: flex-start;
	display: block;
	padding-bottom: 12px;
	padding-top: 16px;
}

.outlet-nav,
.outlet-top-cta {
	display: none;
}

.outlet-brand {
	min-width: 0;
}

.outlet-brand b,
.outlet-footer b {
	font-size: 22px;
}

.outlet-brand small {
	font-size: 9px;
}

.outlet-hero {
	padding: 30px 0 28px;
}

.outlet-hero__inner {
	display: grid;
	gap: 26px;
	grid-template-columns: 1fr;
}

.outlet-hero-art {
	order: -1;
}

.outlet-hero-art>span {
	right: 16px;
	top: 16px;
}

.outlet-flacon {
	height: 162px;
	width: 102px;
}

.outlet-flacon .body {
	height: 126px;
	width: 102px;
}

.outlet-flacon .neck {
	height: 24px;
	top: 20px;
	width: 42px;
}

.outlet-flacon .cap {
	height: 22px;
	width: 52px;
}

.outlet-eyebrow {
	font-size: 12px;
	margin-bottom: 14px;
}

.outlet-hero h1 {
	font-size: 29px;
	max-width: 12em;
}

.outlet-hero p {
	font-size: 14px;
	line-height: 1.55;
	max-width: 100%;
}

.outlet-hero p b {
	font-weight: 700;
}

.outlet-hero__cta {
	flex-direction: row;
	gap: 10px;
	margin-top: 22px;
}

.outlet-btn {
	font-size: 13px;
	min-height: 46px;
	padding: 12px 18px;
	width: auto;
}

.outlet-trust {
	gap: 18px 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 28px;
	padding-top: 24px;
}

.outlet-trust>div {
	gap: 10px;
}

.outlet-trust__icon {
	border-radius: 8px;
	flex-basis: 34px;
	height: 34px;
	width: 34px;
}

.outlet-trust b {
	font-size: 13px;
	font-weight: 900;
}

.outlet-trust small {
	font-size: 12px;
}

.outlet-section {
	padding: 36px 0;
}

.outlet-section-head {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 22px;
}

.outlet-section-head h2 {
	font-size: 24px;
}

.outlet-section-head p {
	font-size: 13px;
	line-height: 1.5;
}

.outlet-grid {
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.outlet-card {
	border-radius: 8px;
}

.outlet-card__body {
	gap: 8px;
	padding: 12px;
}

.outlet-card h3 {
	font-size: 14px;
}

.outlet-card p {
	display: none;
}

.outlet-stars {
	align-items: flex-start;
	flex-direction: column;
	gap: 2px;
}

.outlet-stars span,
.outlet-review-score span,
.outlet-reviews article>span {
	font-size: 12px;
}

.outlet-stars small,
.outlet-stock {
	font-size: 11px;
}

.outlet-price {
	gap: 6px;
}

.outlet-price__now {
	font-size: 19px;
}

.outlet-price__old {
	font-size: 13px;
}

.outlet-price__save {
	display: none;
}

.outlet-card__cta {
	font-size: 12px;
	padding: 10px;
}

.outlet-why__grid,
.outlet-reviews {
	grid-template-columns: 1fr;
}

.outlet-why__grid article,
.outlet-reviews article {
	border-radius: 8px;
	padding: 20px;
}

.outlet-why__grid h3 {
	font-size: 17px;
}

.outlet-why__grid p,
.outlet-reviews p {
	font-size: 13px;
}

.outlet-review-score {
	margin-bottom: 20px;
}

.outlet-review-score strong {
	font-size: 40px;
}

.outlet-faq summary {
	font-size: 14px;
	padding: 16px;
}

.outlet-faq details p {
	font-size: 13px;
	padding-left: 16px;
	padding-right: 16px;
}

.outlet-footer__top {
	grid-template-columns: 1fr;
}

@media (max-width: 360px) {
	.outlet-home {
		border-left: 0;
		border-right: 0;
	}

	.outlet-grid {
		grid-template-columns: 1fr;
	}

	.outlet-hero h1 {
		font-size: 27px;
	}

	.outlet-hero__cta {
		flex-direction: column;
	}

	.outlet-btn {
		width: 100%;
	}
}
