/* ==========================================================================
   Gold Caffé – fő stíluslap
   ========================================================================== */

:root {
	--cream: #f7f3ea;
	--cream-deep: #f2ecdd;
	--white: #ffffff;
	--ink: #241a10;
	--body: #6a6257;
	--muted: #97907f;
	--gold: #c1912e;
	--gold-dark: #a87d24;
	--gold-soft: #f4ead4;
	--line: #e8e1d2;
	--dark: #1a130c;
	--dark-soft: #2a2117;
	--radius: 18px;
	--radius-sm: 12px;
	--font-serif: 'Playfair Display', Georgia, serif;
	--font-sans: 'Inter', -apple-system, 'Segoe UI', sans-serif;
	--shadow-lg: 0 30px 60px -20px rgba(36, 26, 16, 0.25);
	--shadow-card: 0 10px 30px -12px rgba(36, 26, 16, 0.18);
}

/* ---- Alap ---- */

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.7;
	color: var(--body);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--gold-dark);
	text-decoration: none;
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-serif);
	font-weight: 500;
	color: var(--ink);
	line-height: 1.15;
	margin: 0 0 0.5em;
}

.container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 24px;
}

.container--narrow {
	max-width: 760px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	word-wrap: normal !important;
}

.skip-link:focus {
	position: fixed !important;
	top: 8px;
	left: 8px;
	z-index: 1000;
	width: auto;
	height: auto;
	clip: auto;
	padding: 10px 16px;
	background: var(--ink);
	color: #fff;
	border-radius: 8px;
}

[id] {
	scroll-margin-top: 88px;
}

/* ---- Gombok ---- */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 26px;
	border-radius: 999px;
	font-family: var(--font-sans);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn__icon {
	display: inline-flex;
	width: 16px;
	height: 16px;
}

.btn__icon svg {
	width: 100%;
	height: 100%;
}

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

.btn--primary:hover {
	background: var(--gold-dark);
	color: #fff;
}

.btn--outline {
	background: var(--white);
	border-color: var(--line);
	color: var(--ink);
}

.btn--outline:hover {
	border-color: var(--gold);
	color: var(--gold-dark);
}

.btn--block {
	width: 100%;
	justify-content: center;
}

/* ---- Felcím (eyebrow) ---- */

.eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 18px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold);
}

.eyebrow::before,
.eyebrow::after {
	content: '';
	width: 26px;
	height: 1px;
	background: var(--gold);
	opacity: 0.6;
}

.eyebrow--center {
	justify-content: center;
}

.eyebrow--dark {
	color: var(--gold);
}

/* ---- Szekciócímek ---- */

.section-head {
	max-width: 620px;
	margin: 0 auto 56px;
	text-align: center;
}

.section-title {
	font-size: clamp(30px, 4vw, 40px);
	margin: 0 0 14px;
}

.section-title em {
	font-style: italic;
	color: var(--gold);
}

.section-title--left {
	text-align: left;
}

.section-title--light {
	color: #f5efe4;
}

.section-lead {
	margin: 0;
	color: var(--body);
	font-size: 15px;
}

/* ==========================================================================
   Fejléc
   ========================================================================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(253, 251, 246, 0.95);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--line);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 68px;
}

.site-logo {
	font-family: var(--font-serif);
	font-weight: 600;
	font-size: 15px;
	line-height: 1.05;
	letter-spacing: 0.06em;
	color: var(--ink);
	text-transform: uppercase;
}

.site-logo__dot {
	color: var(--gold);
}

.custom-logo {
	max-height: 52px;
	width: auto;
}

.site-nav .menu {
	display: flex;
	align-items: center;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav .menu a {
	font-size: 14px;
	font-weight: 500;
	color: var(--ink);
	padding: 6px 0;
	position: relative;
}

.site-nav .menu a:hover {
	color: var(--gold-dark);
}

.site-nav .menu .current-menu-item > a,
.site-nav .menu .current_page_item > a {
	color: var(--gold-dark);
}

.site-nav .menu .current-menu-item > a::after,
.site-nav .menu .current_page_item > a::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 2px;
	background: var(--gold);
	border-radius: 2px;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.site-nav__cta {
	padding: 10px 22px;
}

.site-nav__cta--mobile {
	display: none;
}

/* Hamburger */

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	padding: 10px;
	background: none;
	border: 1px solid var(--line);
	border-radius: 10px;
	cursor: pointer;
}

.nav-toggle__bar {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--ink);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle__bar:nth-child(2) {
	transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle__bar:nth-child(3) {
	opacity: 0;
}

.nav-open .nav-toggle__bar:nth-child(4) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Nyitó szekció (hero)
   ========================================================================== */

.hero {
	position: relative;
	background: var(--cream);
	padding: 72px 0 88px;
	overflow: hidden;
}

/* Lebegő bútor-sziluettek a háttérben (GSAP animálja) */

.hero__deco-layer {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hero__deco {
	position: absolute;
	width: 56px;
	height: 56px;
	color: var(--gold);
	opacity: 0.14;
}

.hero__deco--cup {
	top: 10%;
	left: 46%;
}

.hero__deco--lamp {
	top: 46%;
	left: 50%;
	width: 44px;
	height: 44px;
}

.hero__deco--chair {
	bottom: 8%;
	left: 42%;
	width: 64px;
	height: 64px;
}

/* Szél-ikonok: a konténeren kívüli sávban lebegnek */

.hero__deco--sofa {
	top: 14%;
	left: 1.5%;
	width: 64px;
	height: 64px;
}

.hero__deco--plant {
	bottom: 12%;
	left: 2.5%;
}

.hero__deco--shelf {
	top: 12%;
	right: 1.5%;
}

.hero__deco--table {
	bottom: 16%;
	right: 2.5%;
	width: 50px;
	height: 50px;
}

/* Szűkebb kijelzőn a szél-ikonok a tartalomra lógnának — elrejtjük őket. */
@media (max-width: 1360px) {
	.hero__deco--edge {
		display: none;
	}
}

.hero__inner {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 72px;
	align-items: center;
	position: relative;
}

.hero__title {
	font-size: clamp(36px, 4.6vw, 52px);
	margin: 0 0 20px;
}

.hero__title em {
	font-style: italic;
	color: var(--gold);
}

.hero__text {
	max-width: 440px;
	margin: 0 0 28px;
	font-size: 15px;
}

.hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 44px;
}

.hero__stats {
	display: flex;
	gap: 48px;
	padding-top: 28px;
	border-top: 1px solid var(--line);
}

.hero__stat {
	display: flex;
	flex-direction: column;
}

.hero__stat-value {
	font-family: var(--font-serif);
	font-size: 26px;
	font-weight: 500;
	color: var(--ink);
	line-height: 1.2;
}

.hero__stat-label {
	font-size: 12.5px;
	color: var(--muted);
}

.hero__media {
	position: relative;
}

.hero__image {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	aspect-ratio: 4 / 5;
	max-height: 560px;
}

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

.hero__badge {
	position: absolute;
	left: -36px;
	bottom: 36px;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 20px;
	background: var(--white);
	border-radius: 14px;
	box-shadow: var(--shadow-card);
}

.hero__badge-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--gold-soft);
	color: var(--gold);
}

.hero__badge-icon svg {
	width: 18px;
	height: 18px;
}

.hero__badge-text {
	display: flex;
	flex-direction: column;
	font-size: 12.5px;
	color: var(--muted);
	line-height: 1.45;
}

.hero__badge-text strong {
	color: var(--ink);
	font-size: 13.5px;
	font-weight: 600;
}

/* ==========================================================================
   Szolgáltatások
   ========================================================================== */

.services {
	background: var(--white);
	padding: 96px 0;
}

.services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
}

.service {
	text-align: center;
	max-width: 300px;
	margin: 0 auto;
}

.service__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	margin-bottom: 20px;
	border-radius: 50%;
	background: var(--gold-soft);
	color: var(--gold);
}

.service__icon svg {
	width: 26px;
	height: 26px;
}

.service__title {
	font-size: 21px;
	margin-bottom: 10px;
}

.service__text {
	margin: 0;
	font-size: 14px;
}

/* ==========================================================================
   Rólunk
   ========================================================================== */

.about {
	background: var(--white);
	padding: 40px 0 96px;
}

.about__inner {
	display: grid;
	grid-template-columns: 0.92fr 1.08fr;
	gap: 80px;
	align-items: start;
}

/* A kép a szöveg mellett "kísér" görgetéskor, arany keretárnyékkal
   és lebegő tapasztalat-kártyával — fekvő képekhez igazítva. */

.about__media {
	position: sticky;
	top: 110px;
	padding: 0 20px 44px 0;
}

.about__frame {
	position: relative;
	border-radius: var(--radius);
}

.about__frame::after {
	content: '';
	position: absolute;
	inset: 0;
	transform: translate(20px, 20px);
	border: 1px solid var(--gold);
	border-radius: var(--radius);
	opacity: 0.45;
	pointer-events: none;
	z-index: -1;
}

.about__frame img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
}

.about__card {
	position: absolute;
	left: -18px;
	bottom: 8px;
	display: flex;
	align-items: center;
	gap: 14px;
	max-width: 78%;
	padding: 16px 22px;
	background: var(--white);
	border-radius: 14px;
	box-shadow: var(--shadow-card);
}

.about__card-value {
	font-family: var(--font-serif);
	font-size: 32px;
	font-weight: 600;
	color: var(--gold);
	line-height: 1;
	flex-shrink: 0;
}

.about__card-label {
	font-size: 13px;
	color: var(--body);
	line-height: 1.4;
}

.about__text p {
	margin: 0 0 18px;
	font-size: 14.5px;
}

.about__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 18px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--white);
	font-size: 13px;
	font-weight: 500;
	color: var(--ink);
}

.badge__icon {
	display: inline-flex;
	width: 15px;
	height: 15px;
	color: var(--gold);
}

.badge__icon svg {
	width: 100%;
	height: 100%;
}

/* ==========================================================================
   Webáruházak
   ========================================================================== */

.shops {
	background: var(--cream-deep);
	padding: 96px 0;
}

.shops__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.shop-card {
	display: flex;
	flex-direction: column;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 10px;
	/* Szándékosan nincs transform-átmenet: a scroll-reveal a transformot
	   animálja, és a kettő ütközése elcsúszott kártyákat okozna. */
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.shop-card:hover {
	border-color: #e0cd9d;
	box-shadow: var(--shadow-card);
}

.shop-card__media {
	position: relative;
	display: block;
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.shop-card__media .shop-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.shop-card:hover .shop-card__media .shop-card__img {
	transform: scale(1.04);
}

/* Webáruház logója: fehér plakett a bolt fotójának bal alsó sarkában. */
.shop-card__logo {
	position: absolute;
	left: 10px;
	bottom: 10px;
	display: inline-flex;
	align-items: center;
	max-width: calc(100% - 20px);
	padding: 7px 12px;
	background: rgba(255, 255, 255, 0.94);
	border-radius: 7px;
	box-shadow: 0 2px 10px rgba(31, 26, 18, 0.14);
	backdrop-filter: blur(3px);
}

.shop-card__logo img {
	display: block;
	height: 26px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}

.shop-card__body {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 10px 10px;
}

.shop-card__info {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.shop-card__title {
	font-family: var(--font-serif);
	font-size: 19px;
	font-weight: 500;
	color: var(--ink);
	line-height: 1.3;
}

.shop-card__subtitle {
	font-size: 12.5px;
	color: var(--muted);
}

.shop-card__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
	font-size: 13px;
	font-weight: 600;
	color: var(--ink);
}

.shop-card:hover .shop-card__link {
	color: var(--gold-dark);
}

.shop-card__arrow {
	display: inline-flex;
	width: 14px;
	height: 14px;
}

.shop-card__arrow svg {
	width: 100%;
	height: 100%;
}

/* ==========================================================================
   Kapcsolat
   ========================================================================== */

.contact {
	background: var(--dark);
	padding: 96px 0;
}

.contact__head {
	max-width: 620px;
	margin: 0 auto 52px;
	text-align: center;
}

.contact__text {
	max-width: 460px;
	margin: 0 auto;
	color: #b3a996;
	font-size: 15px;
}

.contact-cards {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 920px;
}

.contact-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 6px;
	padding: 32px 24px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--dark-soft);
	border-radius: var(--radius-sm);
	transition: border-color 0.25s ease, background 0.25s ease;
}

.contact-card:hover {
	border-color: rgba(193, 145, 46, 0.45);
	background: rgba(255, 255, 255, 0.05);
}

.contact-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 10px;
	border-radius: 50%;
	border: 1px solid var(--dark-soft);
	background: rgba(255, 255, 255, 0.03);
	color: var(--gold);
}

.contact-card__icon svg {
	width: 20px;
	height: 20px;
}

.contact-card__label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #8a8070;
}

.contact-card__value {
	color: #f0e9db;
	font-size: 15.5px;
	font-weight: 500;
	line-height: 1.5;
}

a.contact-card__value:hover {
	color: var(--gold);
}

/* ==========================================================================
   Lábléc
   ========================================================================== */

.site-footer {
	background: var(--cream);
	padding: 72px 0 0;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr 1fr;
	gap: 48px;
	padding-bottom: 56px;
}

.site-footer__brand p {
	max-width: 260px;
	margin: 18px 0 0;
	font-size: 13.5px;
}

.site-footer__title {
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--muted);
	margin: 4px 0 18px;
}

.footer-menu,
.site-footer .menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-menu a,
.site-footer .menu a {
	font-size: 14px;
	color: var(--body);
}

.footer-menu a:hover,
.site-footer .menu a:hover {
	color: var(--gold-dark);
}

.footer-contact {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-contact li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
}

.footer-contact a,
.footer-contact span:not(.footer-contact__icon) {
	color: var(--body);
}

.footer-contact a:hover {
	color: var(--gold-dark);
}

.footer-contact__icon {
	display: inline-flex;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	color: var(--gold);
}

.footer-contact__icon svg {
	width: 100%;
	height: 100%;
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 0;
	border-top: 1px solid var(--line);
	font-size: 12.5px;
	color: var(--muted);
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__bottom a {
	color: var(--body);
}

.site-footer__bottom a:hover {
	color: var(--gold-dark);
}

/* ==========================================================================
   Betöltő animáció
   ========================================================================== */

.preloader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	background: var(--cream);
	/* Saját kompozitor-réteg: a "függöny" felúszása így akadásmentes. */
	will-change: transform;
	transform: translateZ(0);
}

/* Csak akkor látszik, ha a fejléc-szkript engedélyezte (JS fut, nincs
   csökkentett mozgás, munkamenetben először). */
.gc-preload .preloader {
	display: flex;
}

.preloader__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}

.preloader__icon {
	width: 96px;
	height: 84px;
	color: var(--gold);
}

.preloader__path {
	/* A dash-értékeket a JS állítja be a valódi vonalhosszak alapján
	   (getTotalLength). Amíg nem kerül rá a sor a rajzolásban, rejtve. */
	opacity: 0;
}

.preloader__logo {
	font-family: var(--font-serif);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink);
}

/* ==========================================================================
   Süti tájékoztató
   ========================================================================== */

.cookie-banner {
	position: fixed;
	left: 20px;
	right: 20px;
	bottom: 20px;
	z-index: 900;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	max-width: 720px;
	margin: 0 auto;
	padding: 18px 22px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 14px;
	box-shadow: var(--shadow-lg);
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.cookie-banner--visible {
	opacity: 1;
	transform: translateY(0);
}

.cookie-banner__text {
	flex: 1 1 320px;
	margin: 0;
	font-size: 13px;
	line-height: 1.6;
	color: var(--body);
}

.cookie-banner__text a {
	color: var(--gold-dark);
	text-decoration: underline;
}

.cookie-banner__actions {
	display: flex;
	gap: 10px;
}

.cookie-banner__btn {
	padding: 9px 20px;
	font-size: 13px;
}

/* ==========================================================================
   Aloldalak
   ========================================================================== */

.page-content {
	padding: 72px 0 96px;
}

.page-title {
	font-size: clamp(30px, 4vw, 40px);
}

/* ==========================================================================
   Reszponzív
   ========================================================================== */

@media (max-width: 1024px) {
	.hero__inner {
		gap: 48px;
	}

	.hero__badge {
		left: 16px;
	}

	.about__inner {
		gap: 48px;
	}
}

@media (max-width: 860px) {
	.site-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		background: #fdfbf6;
		border-bottom: 1px solid var(--line);
		padding: 16px 24px 24px;
		box-shadow: var(--shadow-card);
	}

	.nav-open .site-nav {
		display: block;
	}

	.site-nav .menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}

	.site-nav .menu a {
		display: block;
		padding: 10px 0;
		font-size: 16px;
	}

	.site-nav .menu .current-menu-item > a::after {
		display: none;
	}

	.site-nav__cta {
		display: none;
	}

	.site-nav__cta--mobile {
		display: inline-flex;
		margin-top: 12px;
	}

	.nav-toggle {
		display: flex;
	}

	.hero {
		padding: 48px 0 64px;
	}

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

	.hero__media {
		order: -1;
		max-width: 480px;
	}

	.hero__stats {
		gap: 32px;
		flex-wrap: wrap;
	}

	.services,
	.shops,
	.contact {
		padding: 64px 0;
	}

	.about {
		padding: 16px 0 64px;
	}

	.services__grid,
	.shops__grid,
	.contact-cards {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.contact-cards {
		gap: 16px;
		max-width: 480px;
	}

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

	.about__media {
		position: static;
		max-width: 520px;
		padding: 0 20px 44px 0;
	}

	.hero__deco-layer {
		display: none;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.site-footer__bottom {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 520px) {
	.hero__badge {
		gap: 10px;
		padding: 12px 14px;
	}

	.cookie-banner {
		left: 12px;
		right: 12px;
		bottom: 12px;
	}

	.about__card {
		left: 0;
		padding: 12px 16px;
	}
}
