html { min-height: 100vh; }

body {
	height: 100%;
    margin: 0;
	font-family: var(--font-tertiary);
    background-color: var(--Colors-Semantics-Background-Page);
}
main {
	height: 100%;
    padding-top: 60px;
    padding-bottom: 120px;
	display: flex;
	justify-content: start;
	align-items: center;
	flex-direction: column;
    box-sizing: border-box;
    overflow-x: hidden;
}
a { 
    text-decoration: none;
    color: unset;
}
a::before,
a::after {
  pointer-events: none; /* Allow clicks to pass through */
}
.button, .product-card {
    -webkit-tap-highlight-color: transparent;
}
@media (max-width: 1099px) {
	.desktop-only {
		display: none !important;
	}
}
@media (min-width: 1100px) {
	main {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.mobile-only {
		display: none !important;
	}
}
.no-padding {
    padding: 0 !important;
}
.main-container {
	width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
	max-width: 1200px;
}
.content-container {
    width: 100%;
    margin: 12px 0;
	box-sizing: border-box;
	padding-left: 6px;
	padding-right: 6px;
}
.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
	height: 100%;
    z-index: -1;
    object-fit: cover;
}
.badges-container {
    display: flex;
    align-items: center;
    gap: 4px;
    padding-bottom: 4px;
}

.blocktitle {
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  	justify-content: center;
	text-align: center;
  	padding: 16px 20px;
  	gap: 10px;
}
.blocktitle .section-header {
  	width: 100%;
  	display: flex;
  	justify-content: center;
  	text-align: center;
}
.blocktitle .paragraph {
  	position: relative;
  	font-size: 14px;
  	line-height: 22px;
  	font-family: var(--font-tertiary);
    color: var(--Colors-Semantics-Text-Secondary);
}

/* Colors */

.color--text-primary {
	color: var(--Colors-Semantics-Text-Primary);
}
.color--text-secondary {
	color: var(--Colors-Semantics-Text-Secondary);
}
.color--text-tertiary {
	color: var(--Colors-Semantics-Text-Tertiary);
}
.color--border-default {
	color: var(--Colors-Semantics-Border-Default);
}
.color--action-primary {
	color: var(--Colors-Semantics-Action-Primary);
}