@font-face {
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('font/Metropolis-Regular.woff') format('woff');
}
@font-face {
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('font/Metropolis-Medium.woff') format('woff');
}
@font-face {
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('font/Metropolis-Bold.woff') format('woff');
}
@font-face {
    font-family: 'Metropolis';
    font-style: italic;
    font-weight: 800;
    font-display: swap;
    src: url('font/Metropolis-BlackItalic.woff') format('woff');
}
@font-face {
    font-family: 'Metropolis';
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    src: url('font/Metropolis-SemiBoldItalic.woff') format('woff');
}
@font-face {
    font-family: 'Metropolis';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('font/Metropolis-MediumItalic.woff') format('woff');
}

/*TOKENS*/
.flex {display: flex}
.flf--c {flex-flow: column}
.flf--r {flex-flow: row}
.align--center {align-items: center}
.jc--spb {justify-content: space-between}
.pb--16 {padding-bottom: 1rem}
.pb--24 {padding-bottom: 1.5rem}
.pb--32 {padding-bottom: 2rem}
.gap--05 {gap: .5rem}
.gap--1 {gap: 1rem}
.gap--2 {gap: 2rem}
.gap--3 {gap: 3rem}
.w50 {width: 50%}
.w100 {width: 100%}
.m0a {margin: 0 auto}
.bg-color--main { background: rgb(244 242 238)}
.text--bold { font-weight: bold }
.round-corners {border-radius: .5rem}

:root{
	--font: 'Metropolis', sans-serif;
	--bg-color-white: #fff;
	--border-color: rgb(232 230 226);
	--link-color: #d45e1e;
}
*, *::before, *::after { box-sizing: inherit }
* { font-family: var(--font) }
body {
	margin: 0;
	padding: 0;
}
body.blog{
	background: rgb(244 242 238);
}
h1, h2, h3, h4, h5 {
	margin: 0;
	padding: 0;
	max-width: 920px;
}
figure {
	margin: 0;
	padding: 0;
}
a {
	color: var(--link-color);
}
a:hover {
	text-decoration: none;
}

/*HEADER*/
header {
	position: sticky;
	top: 0;
  z-index: 100;
	padding: 1.5rem 2rem;
	display: flex;
	flex-flow: row;
	justify-content: space-between;
}
main header {
	position: relative;
	top: unset;
}
.logo > a {
	display: block;
	font: italic 700 1.2rem serif;
	text-decoration: none;
	text-indent: -999px;
	width: 146px;
  height: 24px;
  -webkit-mask-image: url('../images/mycoffeelist.svg');
  mask-image: url('../images/mycoffeelist.svg');
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: #111;
}
header input[type=checkbox] {
    display: none;
}
header nav {
	display: flex;
	flex-flow: row;
	gap: 2rem;
}
header nav a {	
	color: #000;
	text-decoration: none;
}
header nav a:hover {
	text-decoration: underline;
}
header nav a.active::before {
  content: '';
  display: block;
  position: absolute;
  top: -24px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #8261f6;
}
header nav a span {
  font: 400 1rem/1rem var(--font);
  /*color: #fff;*/
}
.nav--active {
  position: relative;
  /*margin-top: -1.5rem;
  padding-top: 1.5rem;*/
}
.nav--active::before {
  content: '';
  display: block;
  background: #fff;
  position: absolute;
  top: -1.5rem;
  left: 0;
  width: 2rem;
  height: 2px;
/*   margin-top: -1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #fff;*/
  /*box-shadow: 0 0 90px 0px #fff, 0 0 60px 40px #4100eb, 0 0 300px 50px #28009f;*/
  /*background: #5524dd;*/
}
.navigation > span {
	background: #000;
}
header nav a span:nth-of-type(1) {
    font-weight: 700;
}
header nav a span:nth-of-type(2) {
    font-size: .9rem;
    opacity: .8;
}

/*FOOTER*/
footer {
	padding: 1rem 0;
	width: 100%;
	font: 400 .9rem var(--font);
	text-align: center;
	opacity: .5;
}
.footer-disclaimer > p {
	margin: 0 auto;
	padding: .5rem 0 0;
	max-width: 800px;
	font: 400 .86rem/1rem var(--font);
	opacity: .8;
}

.hidden {
	display: none;
}

.tabs {
  display: flex;
  gap: .5rem;
}
.tab {
  padding: 6px 12px;
  cursor: pointer;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  user-select: none;
  border-radius: .5rem;
  color: #000;
}
.tab.active {
  background-color: #ddd;
  font-weight: bold;
}




/*SEARCH BAR*/
/*.search-bar {
	padding: 6rem 0;
	width: 100%;
	display: flex;
	flex-flow: row;
	gap: .3rem;
	align-items: center;
	justify-content: center;
}
#searchMachines {
	padding: 0 1rem;
	width: 640px;
	height: 44px;
	border-radius: 8px;
	border: 1px solid #000;
}
.search-bar button {
	cursor: pointer;
	padding: 0 1rem;
	height: 44px;
	border-radius: 8px;
	border: none;
}*/

i.arrow {
  display: inline-block;
  margin-top: 1px;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
}
i.arrow.down {
  transform: rotate(45deg);
}
i.arrow.up {	
	margin-top: 3px;
  transform: rotate(-135deg);
}	

section {
	/*margin-bottom: 2rem;*/
}

.container {
	padding: 1rem;
	background: var(--bg-color-white);
	border: 1px solid var(--border-color);
	border-radius: .5rem;
	overflow: hidden;
}
.container h2 {
	font: 600 1.2rem var(--font);
}

/*COFFEE MACHINES*/
.coffee-machines-comparison {
	padding: 4rem 1rem;
}
.hero h1 {
  margin: 4rem auto 0;
  font: 600 3.2rem / 3.4rem var(--font);
	text-align: center;
}
.hero p {
	margin-bottom: 6rem;
	text-align: center;
}
.coffee-machines {
	margin-top: 1rem;
	padding: .5rem 0 0;
}
.comparison-table {
	margin: 1rem 0 0;
	display: block;
	width: 100%;
	overflow-x: auto;
}
.coffee-machines-th,
.machine-row,
.comparison-table tr {
	border-bottom: 1px solid var(--border-color);
}
.machine-rows {
	display: flex;
	flex-flow: column;
	/*gap:.2rem;*/
}
.machine-row,
.comparison-table tr {
	position: relative;
	display: flex;
	flex-flow: row;
	align-items: center;
	gap: .5rem;
	overflow: hidden;
	font: 400 .9rem var(--font);
	background: #fff;
}
.machine-row:hover,
.comparison-table tr:hover {
	background: rgb(255 251 240);
}
.comparison-table th,
.comparison-table td {
	text-align: left;
}
.machine-row a,
.comparison-table td a {
	font-weight: 600;
	line-height: 1.1rem;
	text-decoration: none;
	border-bottom: 1px solid #ffba95;
}
.machine-row a:hover,
.comparison-table a:hover {
	border: transparent;
}
.machine-row:last-of-type,
.comparison-table tr:last-of-type{
	border: none;
}
.coffee-machines-th .machine-compare,
.machine-row .checkbox-wrapper,
.machine-row figure,
.machine-rating {
	flex-shrink: 0;
}
.machine-row figure,
.comparison-table td figure {
	margin: .1rem 0;
	padding: 0;
	width: 48px;
	height: 32px;
	overflow: hidden;
	background: #fff;
	border-radius: .5rem;
}
.machine-row figure img,
.comparison-table td figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
/* Container for positioning */
.checkbox-wrapper {
	padding-left: .8rem;
  /*display: inline-block;*/
  position: relative;
  width: 18px;
  height: 18px;
}
/* Hide default checkbox */
.checkbox-wrapper input[type="checkbox"] {
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
/* Custom visual box */
.custom-box {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid rgb(56 56 56);
  border-radius: 4px;
  display: block;
  position: relative;
  box-sizing: border-box;
  transition: background-color 0.2s, border-color 0.2s;
}

/* Checkmark (hidden by default) */
.checkbox-wrapper input[type="checkbox"]:checked + .custom-box {
  background-color: #000;
  border-color: #000;
}

.checkbox-wrapper input[type="checkbox"]:checked + .custom-box::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.machine-row figure {
	padding: .2rem 0;
}
.coffee-machines img {
	width: 48px;
	height: 48px;
	mix-blend-mode: multiply;
	border-radius: .3rem;
	object-fit: contain;
	background: #fff;
}
.coffee-machines-th {
	padding: 0 0 .5rem .5rem;
	gap: .5rem; 
	font-size: .9rem;
	opacity: .5;
}
.coffee-machines-th .machine-name,
.coffee-machines-th .machine-type,
.coffee-machines-th .machine-price {
	cursor: pointer;
	display: flex;
	flex-flow: row;
	gap: .5rem;
}
.machine-compare { 
	min-width: 101px; 
	width: 101px; 
	white-space: nowrap;
}
.machine-checkbox { 
	min-width: 44px; 
	width: 44px; 
	white-space: nowrap;
}
.machine-image { 
	min-width: 48px; 
	width: 48px; 
	white-space: nowrap;
}
.machine-name { 
	min-width: 30%;
	width: 30%;
}
.machine-type { 
	min-width: 150px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.machine-dimensions { 
	min-width: 111px;
	width: 111px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.machine-rating { 
	min-width: 140px;
}
.machine-grinder { 
	min-width: 64px;
	width: 64px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.machine-capacity { 
	min-width: 130px;
	width: 130px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.machine-steamwand { 
	width: 140px
}
.machine-price { width: 88px}

.coffee-machines.comparison {
	display: flex;
	flex-flow: row;
}
.coffee-machines.comparison > div {
	flex-flow: column;
	width: 49%;
}

.coffee-machines.comparison img {
	width: 240px;
	height: auto;
}

.star-rating {
  display: flex;
  position: relative;
  gap: .3rem;
  align-items: center;
  width: 72px;
  height: 20px;
  /*font-size: 24px;*/
  /*font-family: Arial, sans-serif;*/
  /*line-height: 1;*/
}

.stars-empty {
  color: #ccc;
}

.stars-filled {
  color: #f5b301;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  width: 94%; /* 4.7 out of 5 stars = 94% */
}
.rating-label {
	opacity: .5;
	text-wrap-mode: nowrap;
}
.row-buttons {
	/*margin-right: 1rem;*/
	/*position: absolute;
	top: 0;
	right: 0;
	padding: 0 1rem;
	display: flex;
	align-items: center;
	height: 100%;
	background: linear-gradient(to right, transparent 0%, white 10%, white 100%);*/
}
.button {
	cursor: pointer;
	display: flex;
	padding: .2rem 1rem;
	align-items: center;
	min-height: 40px;
	font: 500 1rem var(--font);
	text-decoration: none;
	border-radius: .5rem;
	outline: none;
	border: none;
}
.button-primary {
	background: rgb(48, 48, 48);
	color: #fff;
}
.button-primary:hover {
	background: rgb(0, 0, 0);
}
.button-secondary {
	background: #fff;
	border: 1px solid var(--border-color);
}
.button-secondary:hover {
	border: 1px solid rgb(212 210 206);
}
.button-buy {
	font: 500 .9rem var(--font);
	min-height: 24px;
	padding: .2rem .5rem;
	background: rgb(48, 48, 48);
	color: #fff;
	text-decoration: none !important;
	border: none !important;
	white-space: nowrap;
}
.button-buy:hover {
	background: rgb(0, 0, 0);
}

.comparison-bar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	padding: .5rem 1rem;
	width: 100%;
	border-top: 1px solid var(--border-color);
	background: rgb(255 255 255);
	z-index: 1;
}

.coffee-machines-side-by-side {
	display: none;
	flex-flow: row;
	gap: 1rem;
	margin-top: 1rem;
  padding: 1rem;
  height: calc(100vh - 300px);
  background: var(--bg-color-white);
  border: 1px solid var(--border-color);
  border-radius: .5rem;
  overflow: hidden;
}
.coffee-machines-side-by-side > div {
	display: flex;
	flex-flow: column;
	width: 50%;
	align-items: center;
}
.coffee-machines-side-by-side > div > div {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 32px;
}
.coffee-machines-side-by-side > div > div:nth-of-type(2n) {
	background: rgb(244 242 239);
	border-radius: .5rem;
}
.coffee-machines-side-by-side figure {
	position: relative;
	width: 320px;
	min-height: 320px;
	overflow: hidden;
	border-radius: .5rem;
}
.coffee-machines-side-by-side figure img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.coffee-machines-side-by-side .machine-name {
	padding-top: 1rem;
	height: 44px;
	font-size: 1.2rem;
}
.coffee-machines-side-by-side .star-rating {
	flex-flow: row;
}
.coffee-machines-side-by-side .button-buy {
	margin-top: 1rem;
}

/*BLOG*/
.blog-container {
	margin: 0 auto;
	padding: 3rem 0;
	max-width: 1160px;
}
.blog-container h1 {
	font: 600 3.2rem/3.4rem var(--font);
}
.blog-container header {
	margin: 0;
	padding: 0;
	display: flex;
	flex-flow: column;
}
.blog-container header p {
	font: 400 1.1rem/1.5rem var(--font);
}
.blog-container section {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	width: 100%;
}
.blog-container article {
	/*flex: 1;*/
	/*flex-shrink: 0;*/
	flex: 1 1 auto;
	padding: .5rem;
	/*max-width: calc(33.3% - 2.4rem);*/
	max-width: calc((100% - 7rem) / 3);
	background: #fff;
	overflow: hidden;
	border-radius: 1rem;
}
.blog-container article figure {
	position: relative;
	background: #ccc;
	width: 100%;
	padding-bottom: 70%;
	border-radius: .66rem;
	overflow: hidden;
}
.blog-container article figure img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.blog-container article h2 {
	padding: .5rem;
}
.blog-container article p {
	margin: 0;
	padding: .2rem .5rem;
}
.blog-container article h2,
.blog-container article h2 a {
	font: 600 1.5rem/1.8rem var(--font);
	text-decoration: none;
	color: #000;
}

section.hero {
	margin: 0;
}
.post-cover {
	position: relative;
	margin: .5rem auto 0 auto;
	max-width: 1320px;
	width: calc(100% - 4rem);
	min-height: 640px;
	overflow: hidden;
	border-radius: 1rem;
}
.post-cover img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.breadcrumbs {
	margin: 0 auto;
	padding: 4rem 0 1rem;
	max-width: 1024px;
	opacity: .8;
}
.breadcrumbs ol {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
}
.breadcrumbs li a {
	font: 400 .9rem var(--font);
}
.breadcrumbs li + li::before {
  content: "/";
  padding: 0 0.4em;
  font: 400 .9rem var(--font);
  color: #ccc;
}
.breadcrumbs li:last-of-type {
	white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.content-wrapper {
	margin: 0 auto;
	max-width: 1024px;
	padding: 0 0 4rem;
	display: flex;
	flex-flow: row;
	flex-wrap: wrap;
	gap: 3rem;
}
.single-article {
	flex: 1 1 70%;
}
.single-article h1 {
	font: 700 2.8rem var(--font);
}
.single-article .article-meta {
  padding: 1.2rem 0 0.3rem;
  opacity: 0.8;
}
.single-article h2 {
	padding: 2.4rem 0 1rem;
	font: 600 2rem/2.2rem var(--font);
}
.single-article h3 {
	padding: 1.6rem 0 .4rem;
	font: 600 1.7rem/2rem var(--font);
}
.single-article h4 {
	padding: 1.6rem 0 0.8rem;
	font: 600 1.4rem/1.7rem var(--font);
}
.single-article h5 {
	padding: 1.3rem 0 .2rem;
	font: 600 1.2rem/1.4rem var(--font);
}
.single-article ul {
	margin: 0;
	padding: 0 0 1.2rem 2rem;
}
.single-article li {
	padding: .5rem 0;
}
.single-article p {
	margin: 0;
	padding: .6rem 0;
}
.single-article figure {
	position: relative;
	margin: .8rem 0;
	padding: .5rem 0;
}
.single-article figure img {
	border-radius: .5rem;
}
.single-article figure.w50 {
	padding: .5rem 0 64%;
	width: 100%;
	background: #fff;
	display: flex;
	justify-content: center;
	border-radius: .5rem;
}
.single-article figure.w50.m0a > a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.single-article figure.w50 img {
	position: absolute;
	top: 0;	
	width: 50%;
	height: 100%;
	object-fit: contain;
}
.single-article p,
.single-article li {
	font: 400 1.1rem/1.36rem var(--font);
}
.single-article a:hover {
	text-decoration: none;
}
.single-article ul.flex.flf--r {
	padding: 0 0 1.2rem 0;
	gap: 2.4rem;
}
.single-article ul.flex.flf--r li {
	list-style: none;
	width: calc(33.3% - 2rem);
}
.single-article ul.flex.flf--r li figure {
	padding: .5rem;
	position: relative;
	width: 100%;
	padding-bottom: 100%;
	background: #fff;
	border-radius: .5rem;
	opacity: hidden;
}
.single-article ul.flex.flf--r li figure img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.single-article table {
	padding: .3rem 0 .6rem;
}
.single-article table caption {
	padding-bottom: .5rem;
	text-align: left;
	font: italic 300 1rem var(--font);
	opacity: .8;
}
.single-article table th,
.single-article table td {
	padding: 0.3rem 0.5rem;
	height: 32px;
	font: 400 .96rem/1.24 var(--font);
}
.single-article table td ul {
	padding: 0.7rem 0 0.7rem 0.8rem;
}
.single-article table td li {
	padding: 0;
	font: 400 1rem/1.3rem var(--font);
}
.single-article table th {
	padding: .2rem 0.6rem;
	text-align: left;
	font-weight: 600;
	background: rgb(238 233 222);
	color: #000;
}
.single-article table th:first-of-type {
	border-radius: .3rem 0 0 0;
}
.single-article table th:last-of-type {
	border-radius: 0 .3rem 0 0;
}
.single-article table td {
	background: rgb(244 242 238);
}
.single-article table tr:last-of-type td:first-of-type {
	border-radius: 0 0 0 .3rem;
}
.single-article table tr:last-of-type td:last-of-type {
	border-radius: 0 0 .3rem 0;
}
.single-article .pinterest {
	padding: 2rem 0 0;
	width: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 1rem;
}
.single-article .pinterest .pin {
	flex: 0 1 calc(50% - 8px); /* Two per row, subtracting half of the gap */
  box-sizing: border-box;
  flex-shrink: 1;
  min-width: 0;
}
.single-article .pinterest .pin img {
	width: 100%;
  height: auto;
  display: block;
  border-radius: .5rem;
}
aside {
	position: sticky;
	top: 4.4rem;
	align-self: start;
	flex: 1 1 calc(30% - 3rem); 
}
aside .subscription {
	padding: 1rem;
	background: rgb(244 242 238);
	border-radius: 1rem;
}
aside section h2 {
	font: 600 1.5rem/1.8rem var(--font);
}
aside .subscription input {
	padding: .2rem .5rem;
	width: calc(100% - 1rem);
	min-height: 36px;
	font: 400 .9rem var(--font);
	border-radius: .4rem;
	border: none;
	outline: none;
}
aside .subscription button {
	cursor: pointer;
	margin-top: .5rem;
	width: calc(100% - 1rem);
	min-height: 36px;
	font: 600 .9rem var(--font);
	border-radius: .4rem;
	border: none;
	outline: none;
	background: #000;
	color: #fff;
}
aside .subscription button:hover {
	background: rgb(24 24 24);
}
aside .subscription .small {
	margin: 0;
	padding: .5rem 0 0;
	font: 400 .8rem var(--font);
	opacity: .8;
}
aside .aside-item {
	margin: 0 0 1rem;
	padding: 1rem;
	background: rgb(244 242 238);
	border-radius: 1rem;
}
aside .aside-item h2 {
	font: 600 1rem/1.1rem var(--font);
}
aside .related-posts > div,
aside .related-posts > article {
	margin-bottom: .8rem;
}
aside .related-products {
	max-height: calc(100vh - 480px);
	overflow-y: scroll;
}
aside .aside-item > div > a,
aside .aside-item > article > figure {
	position: relative;
	display: block;
	width: 72px;
	height: 40px;
	border-radius: .3rem;
	overflow: hidden;
	background: #fff;
	border: none;
}
aside .aside-item > div > a img,
aside .aside-item > article > figure img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
aside .aside-item > div > div,
aside .aside-item > article > div {
	width: calc(100% - 40px);
}
aside .aside-item > div > div > a,
aside .aside-item > article > div > a {
	font: 600 .86rem/1.1rem var(--font);
	text-decoration: none;
	color: #000;
}
aside .aside-item > article h3,
aside .aside-item > article h3 a {
	font: 600 .86rem/1.06rem var(--font);
	text-decoration: none;
	color: #000;
}
aside .aside-item > article h3 + a {
	margin: .1rem 0 1rem;
	font-weight: normal;
	line-height: .86rem;
	align-self: flex-start;
	color: var(--link-color);
	border-bottom: 1px solid var(--link-color);
	/*text-decoration: underline;*/
}
aside .aside-item > article h3 + a:hover {
	border-bottom: 1px solid transparent;
}
aside .interactions {
	display: none;
}
article figure,
article figure img {
	width: 100%;
}
/*.article-container {
	margin: 0 auto;
	max-width: 720px;
}*/

.blog figure img {
	width: 100%;

}

/*TEMPORARILY*/
.comments {
	display: none;
}
.article-container .comments {
	padding: 2rem 0;
}

.no-box {
	padding: 4rem 0;
}
.no-box h2,.no-box p {
	margin: 0 auto;
	max-width: 860px;
	opacity: .9;
}
section h2 {
	padding-bottom: .6rem;
	font: 600 2rem/2.2rem var(--font);
}
section p {
	padding: .3rem 0;
	font: 400 0.96rem/1.3rem var(--font);
}

.faq {
	margin: 0 auto;
	max-width: 860px;
}
.faq-container {
	padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.faq-card {
  flex: 1 1 calc(50% - 2rem);
}
.faq-card h3 {
  margin: 0;
  font: 600 1.2rem/1.6rem var(--font);
}
.faq-card p {
	margin: 0;
	padding-top: .5rem;
}

.product-container {
	margin: 0 auto;
	max-width: 1024px;
}
.product-container .breadcrumbs {
	padding: 1rem 0 2rem;
}
.product-big-image {
	position: relative;
	width: 560px;
	height: 560px;
	border-radius: 1rem;
	overflow: hidden;
}
.thumbnails figure {
	position: relative;
	width: 80px;
	height: 80px;
	border-radius: 1rem;
	overflow: hidden;
}
.product-big-image {
	padding: 1rem;
	background: #fff;
}
.product-big-image img,
.thumbnails figure img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.product-big-image img {
	width: calc(100% - 2rem);
	height: calc(100% - 2rem);
}
.thumbnails figure {
	cursor: pointer;
}
.product-info h1 {
	font: 600 2rem/2.4rem var(--font);
}
.product-info ul {
    list-style: none;
    margin: 0;
    padding: .5rem 0 0;
}
.product-info ul li {
  margin-bottom: .8rem;
  font: 400 1.2rem/1.5rem var(--font);
}
.price {
	padding: 0 0 .5rem;
  font: 600 1.6rem/2rem var(--font);
}
.product-info .button-buy {
	padding: 0 1.2rem;
	align-self: flex-start;
	font: 600 1.1rem/56px var(--font);
	background: rgb(255 128 80);
}
.product-description {
  padding: 3rem 6rem;
  border-radius: 1rem;
  border: 1px solid rgb(75 75 75);
  
  max-width: unset;
  width: calc(100% - 12rem);
}
.product-description h2 {
	position: relative;
	padding: 1.6rem 0 0;
}
.product-description h2:first-of-type::before {
	content: 'In-depth Product Description';
	position: absolute;
	top: 0;
	left: 0;
	font: 400 .9rem var(--font);
	text-transform: uppercase;
	opacity: .8;
}
.product-description p,
.product-description li {
	font: 400 1.1rem/1.4rem var(--font);
}
.faq-item {
	padding: 1.5rem 0 0;
}

#scrollToTopBtn {
  position: fixed;
  padding: 0;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  background-color: #333;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
#scrollToTopBtn i {
  padding: 0;
  margin: 0;
  display: block;
  width: 24px;
  height: 24px;
    -webkit-mask-image: url('../images/arrow-up.svg');
  mask-image: url('../images/arrow-up.svg');
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: #fff;
}
#scrollToTopBtn:hover {
  background-color: #555;
}
#scrollToTopBtn.show {
  opacity: 1;
  visibility: visible;
}

.equip-type {
	padding: 0 1rem;
	align-items: center;
	justify-content: center;
	min-width: 80px;
	max-width: 104px;
	min-height: 80px;
	background: #fff;
	border: 1px solid #000;
	border-radius: .5rem;
	text-align: center;
}

/*DARK MODE*/
@media (prefers-color-scheme: dark) {
	.bg-color--main { background: rgb(30 30 30) }
	:root {
		--bg-color-white: #000;
		--border-color: rgb(80 80 80);
		--link-color: #ffcda0;
	}
	body,
	body.blog {
		background: #000;
		color: #fff;
	}
	.logo > a {
		/*color: #fff;*/
		background: #fff;
	}
	header .logo:has(+ .navigation input:checked) {
		background: transparent !important;
	}
	.navigation input:checked~span {
		background: #fff !important;
	}
	header nav a,
	.navigation input:checked~nav a span {
		color: #fff !important;
	}
	.navigation > span {
    background: #fff;
	}
	.machine-row,
	.comparison-table tr {
		background: rgb(16 16 16);
	}
	.machine-row:hover,
	.comparison-table tr:hover {
		background: rgb(32 32 32);
	}
	.machine-row a,
	.comparison-table td a {
		color: #ffba95;
	}
	.coffee-machines img,
	.comparison-table img {
		mix-blend-mode: normal;
	}
	.row-buttons {
		background: linear-gradient(to right, transparent 0%, rgb(16 16 16) 10%, rgb(16 16 16) 100%);
	}
	.button-buy {
		background: rgb(240 240 240);
		color: #000 !important;
	}
	.button-buy:hover {
		background: rgb(255 255 255);
	}
	.custom-box {
		border-color: rgb(120 120 120);
	}
	.checkbox-wrapper input[type="checkbox"]:checked + .custom-box {
	  background-color: #fff;
	  border-color: transparent;
	}
	.checkbox-wrapper input[type="checkbox"]:checked + .custom-box::after {
		border-color: #000;
	}
	.coffee-machines-side-by-side > div > div:nth-of-type(2n) {
		background: rgb(32 32 32);
	}
	.comparison-bar {
		background: rgb(16 16 16);
	}
	.breadcrumbs li a {
		color: #fff;
		white-space: nowrap;         
  	overflow: hidden;            
  	text-overflow: ellipsis; 
	}
	.blog-container article {
		background: #3d3333;
	}
	.blog-container article h2,
	.blog-container article h2 a {
		color: #fff;
	}
	.single-article a {
		color: #ffcda0;
	}
	aside .subscription {
		background: #333;
	}
	aside .aside-item {
   	 background: #222;
	}
	aside .aside-item > div > a {
		background: #000;
	}
	aside .aside-item > div > div > a,
	aside .aside-item > article h3, aside .aside-item > article h3 a {
		color: #fff;
	}
	.single-article table th {
		background: rgb(43 43 42);
		color: #fff;
	}
	.single-article table td {
    background: rgb(24 24 24);
  }
  .product-info .button-buy {
		background: rgb(255 128 80);
	}
}

/*1220px*/
@media (max-width: 1220px) {
	.blog-container {
		padding: 3rem 2rem;
	}
	.product-container {
		padding: 0 2rem;
	}
	.product-container > section:first-of-type {
		gap: 2rem;
	}
	.product-container .gallery,
	.product-container article {
		width: 50%;
	}
	.product-container .gallery .product-big-image {
		width: calc(100% - 2rem);
	}
}

/*1024px*/
@media (max-width: 1024px) {
	.blog-container section {
		gap: 1.5rem;
	}
	.blog-container article {
		max-width: calc((100% - 6rem) / 3);
	}
	.article .post-cover {
		width: calc(100% - 2rem);
		min-height: 480px;
	}
	.breadcrumbs {
		padding: 4rem 1rem 1rem;
	}
	.single-article {
		padding: 0 1rem;
	}
	aside,
	footer {
		padding: 0 1rem;
		max-width: calc(100% - 2rem);
		width: calc(100% - 2rem);
	}
	.product-description {
		padding: 2rem;
		width: calc(100% - 4rem);
	}
}

/*900px*/
@media (max-width: 900px) {
  .faq-card {
    flex: 1 1 calc(50% - 20px);
  }
  .coffee-machines-th {
  	display: none;
  }
  .machine-row {
  	position: relative;
  	height: 86px;
    align-items: flex-start;
    padding: .5rem 0;
  }
  .machine-rows .machine-type,
  .machine-rows .machine-rating,
  .machine-rows .machine-capacity {
  	top: 48px;
  }
  .machine-rows .machine-type::before {
  	content: 'Type:';
    position: absolute;
    padding-bottom: 0px;
    top: 0;
    opacity: .6;
  }
  .machine-rows .machine-type {
  	position: absolute;
    /*top: 60px;*/
    left: 94px;
    padding-top: 20px;
    width: 30%;
  }
  .machine-rows .machine-rating::before {
  	content: 'Rating:';
    position: absolute;
    padding-bottom: 0px;
    top: 0;
    opacity: .6;
  }
  .machine-rows .machine-rating {
  	position: absolute;
    /*top: 56px;*/
    left: 260px;
    padding-top: 20px;
    width: 30%;
  }
  .machine-rows .machine-rating .star-rating {
  	margin-top: -3px;
  }
  .machine-rows .machine-capacity::before {
  	content: 'Capacity:';
    position: absolute;
    padding-bottom: 0px;
    top: 0;
    opacity: .6;
  }
  .machine-rows .machine-capacity {
  	position: absolute;
    /*top: 60px;*/
    left: 400px;
    padding-top: 20px;
    width: 30%;
  }
  .machine-rows .machine-price::before {
  	content: 'Price:';
    position: absolute;
    padding-bottom: 0px;
    top: 0;
    opacity: .6;
  }
  .machine-rows .machine-price {
  	position: absolute;
    top: 48px;
    left: 516px;
    padding-top: 20px;
    width: 30%;
  }
  .machine-rows .machine-grinder,
  .machine-rows .machine-steamwand {
  	display: none;
  }
  .row-buttons {
  	background: none;
  	position: absolute;
    width: 72px;
    margin: 0;
    padding: 0;
    left: unset;
    top: unset;
    right: 1rem;
    bottom: 1rem;
    height: 38px;
  }
  .button-buy {
  	min-height: 40px;
    padding: .2rem 1.3rem;
  }
  .no-box {
  	padding: 0 1rem;
  }

	.blog-container article {
		max-width: calc((100% - 3.5rem) / 2);
	}
}

@media (max-width: 840px) {
	.product-container > section:first-of-type {
		flex-flow: column;
		gap: 2rem;
	}
	.product-container .gallery,
	.product-container article {
		width: 100%;
	}

	.product-description {
		/*padding: 2rem;*/
		padding: 2rem 0 0;
		width: 100%;
		border: none;
	}
}
@media (max-width: 720px) {
  .machine-row {
  	position: relative;
  	height: 136px;
  }
  .machine-rows .machine-price {
    top: 96px;
    left: 94px;
    width: 30%;
  }

	header .navigation {
    top: 1.4rem;
    right: 1.5rem;
    cursor: pointer;
    display: block;
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 2;
    -webkit-user-select: none;
    user-select: none;
  }
  header nav {
    display: none;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    padding: 160px 0 0 0;
    width: 100%;
    height: 100vh;
    text-align: center;
    z-index: 1;
    /*background: var(--light);*/
    -webkit-animation: .3s cubic-bezier(.77, .2, .05, 1) 0s normal forwards 1 fadein;
    animation: .3s cubic-bezier(.77, .2, .05, 1) 0s normal forwards 1 fadein;
    background: #fff;
  }
  header input[type=checkbox] {
      display: block;
  }
  .navigation nav {
      display: none;
  }
  .navigation nav a span:nth-of-type(1) {
      font: 700 1.5rem/1.7rem var(--font);
  }
  .navigation input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0;
    z-index: 3;
    -webkit-touch-callout: none;
  }
  .navigation > span {
    display: block;
    width: 30px;
    height: 3px;
    margin-bottom: 5px;
    position: relative;
    border-radius: 2px;
    z-index: 2;
    transform-origin: 4px 0;
    transition: transform .5s cubic-bezier(.77, .2, .05, 1), background .5s cubic-bezier(.77, .2, .05, 1), opacity .55s ease;
  }
  .light .navigation > span {
    background: #000;
  }
  .navigation > span:nth-last-child(2) {
    transform-origin: 0 100%;
  }
  .navigation > span:first-child {
    transform-origin: 0 0
  }

  .navigation > span:nth-last-child(2) {
    transform-origin: 0 100%
  }

  .navigation input:checked {
    border: 1px solid red;
  }

  .navigation input:checked~span {
    opacity: 1;
    transform: rotate(45deg) translate(2px, -4px);
  }

  .navigation input:checked~span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0) scale(.2, .2)
  }

  .navigation input:checked~span:nth-last-child(2) {
    transform: rotate(-45deg) translate(4px, 4px)
  }

  .navigation input:checked~nav {
    display: flex;
    flex-flow: column;
    gap: 1.8rem;
    opacity: 1;
    -webkit-animation: .5s cubic-bezier(.77, .2, .05, 1) 0s normal forwards 1 fadein;
    animation: .5s cubic-bezier(.77, .2, .05, 1) 0s normal forwards 1 fadein;
  }
  .navigation input:checked~nav a span {
      color: #000;
  }
  .navigation input:checked~span {
      background: #000;
  }
  header .logo:has(+ .navigation input:checked) {
      background: #fff;
      z-index: 3;
  }
}
@media (prefers-color-scheme: dark) and (max-width: 720px) {
    header nav {
      background: #000 !important;
  }
}
@media (max-width: 640px) {
  .faq-card {
    flex: 1 1 100%;
  }
  .blog-container article h2,
  .blog-container article h2 a {
  	font: 600 1.2rem/1.5rem var(--font);
  }
}

@media (max-width: 480px) {
	.filters {
		flex-flow: column;
    align-items: flex-start;
    gap: .5rem;
	}
	.coffee-machines-comparison h1 {
		padding: 0 1rem;
		font: 600 2.4rem/2.6rem var(--font);
	}
	.coffee-machines-comparison p {
		padding: 0 1rem;
	}
	.filters {
		padding: 0 1rem;
	}
	.coffee-machines-comparison {
		padding: 4rem 0.3rem;
	}
	.machine-rows .machine-type,
	.machine-rows .machine-rating {
		width: 50%;
	}
	.machine-dimensions {
		width: 120px;
	}
	.machine-rows .machine-capacity {
		top: 96px;
    left: 94px;
	}
	.machine-rows .machine-price {
		top: 96px;
    left: 194px;
	}/*
	.row-buttons {
    left: 270px;
    top: 100px;
	}*/
  .blog-container article {
    max-width: 100%;
  }
  .single-article h1 {
    font: 700 2.2rem var(--font);
	}
  .single-article table {
		width: 100%;
  }
  .single-article table th,
	.single-article table td {
		padding: .24rem .36rem;
		height: 32px;
		overflow: hidden;
    text-overflow: ellipsis;
    align-content: baseline;
    max-width: 36px;
	}
	.single-article table th,
	.single-article table td,
	.single-article table td li {
		font: 400 .8rem/1.1rem var(--font);
	}
}