/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}


.mat1  {float: left; width: 100%; background-color: #153b2c; background-size: 100% auto; margin-bottom: -100px; overflow: hidden; position: relative;}
.mat1_width {width: 100%; max-width: 1300px; margin-left: auto; margin-right: auto;}
.mat1_menu  {float: left; width: 100%; padding-top: 15px; color: #fff; z-index: 100; position: relative;}
.mat1_menu_left {float: left; width: 40%; text-align: left;}
.mat1_menu_center {float: left; width: 20%; text-align: center;}
.mat1_menu_center img{max-width: 100px;}
.mat1_menu_right {float: left; width: 40%; text-align: right; padding-top: 10px;}

/* Hamburger Button Styles */
.hamburger-btn {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 32px;
	height: 28px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
	position: relative;
	margin-top: 20px;
}

.hamburger-line {
	width: 100%;
	height: 3px;
	background: #cabc98;
	border-radius: 2px;
	transition: all 0.3s ease;
	transform-origin: center;
}

.hamburger-btn:hover .hamburger-line {
	background: #fff;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
	opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 300px;
	width: calc(100% - 300px);
	height: 100%;
	background: rgba(21, 59, 44, 0.85);
	z-index: 1000;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
	opacity: 1;
}

/* Left Menu Styles */
.left-menu {
	display: flex;
	align-items: center;
	gap: 50px;
	padding-top: 20px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-link {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
	font-family: 'Inter', sans-serif;
	transition: all 0.3s ease;
	position: relative;
}

.menu-link:hover {
	color: #cabc98;
	transform: translateY(-1px);
}

.menu-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: #cabc98;
	transition: width 0.3s ease;
}

.menu-link:hover::after {
	width: 100%;
}
.cart-mockup {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: rgba(202, 188, 152, 0.15);
	padding: 10px 20px;
	border-radius: 50px;
	border: 1.5px solid #cabc98;
	transition: all 0.3s ease;
	cursor: pointer;
}
.cart-mockup:hover {
	background: rgba(202, 188, 152, 0.25);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(202, 188, 152, 0.2);
}
.cart-icon {
	color: #cabc98;
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}
.cart-value {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	font-family: 'DM Serif Display', serif;
	white-space: nowrap;
}

/* Sticky CTA Button - Liquid Glass Effect */
.sticky-cta {
	position: fixed;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%) translateY(150%);
	z-index: 1000;
	background: rgba(202, 188, 152, 0.25);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border: 1.5px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	padding: 13px 26px;
	display: flex;
	align-items: center;
	gap: 15px;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 
		0 8px 32px rgba(21, 59, 44, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.4),
		inset 0 -1px 0 rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
}

.sticky-cta.visible {
	transform: translateX(-50%) translateY(0);
	opacity: 1;
	visibility: visible;
}

.sticky-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50px;
	padding: 1.5px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.sticky-cta:hover {
	background: rgba(202, 188, 152, 0.35);
	transform: translateX(-50%) translateY(-3px);
	box-shadow: 
		0 12px 40px rgba(21, 59, 44, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.5),
		inset 0 -1px 0 rgba(0, 0, 0, 0.1);
	border-color: rgba(255, 255, 255, 0.4);
}

.sticky-cta:active {
	transform: translateX(-50%) translateY(-1px);
	box-shadow: 
		0 6px 24px rgba(21, 59, 44, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.sticky-cta-text {
	color: #153b2c;;
	font-size: 18px;
	font-weight: 500;
	font-family: 'DM Serif Display', serif;
	letter-spacing: 0.3px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.sticky-cta-price {
	color: #cabc98;
	font-size: 18px;
	font-weight: 600;
	font-family: 'DM Serif Display', serif;
	background: #153b2c;
	padding: 5px 12px;
	border-radius: 30px;
	border: 1px solid rgba(202, 188, 152, 0.3);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
}
.mat1_left  {float: left; width: 50%;}
.mat1_right  {float: right; width: 50%; }
.mat1_right  img{width: 175%; margin-left: -100px; margin-top: -250px; z-index: 3; position: relative;}
.mat1_nadpis0 {float: left; width: 100%;  color: #cabc98; text-align: left; padding-top: 90px; font-size: 28px; font-weight: 300;line-height: 1.1; font-family: 'DM Serif Display', serif;}
.mat1_nadpis {float: left; width: 100%;  color: #fff; text-align: left; padding-top: 10px; padding-bottom: 30px; font-size: 82px; line-height: 1.1; font-family: 'DM Serif Display', serif;}
.mat1_nadpis span {
	background: linear-gradient(135deg, #cabc98 0%, #faf7ef 60%, #cabc98 100%);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: shimmer 3s ease-in-out infinite;
	text-shadow: 0 0 10px rgba(202, 188, 152, 0.5);
	font-style: normal;
}

@keyframes shimmer {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.mat1_text {float: left; width: 100%; padding-right: 25%; color: #fff; text-align: left; padding-top: 10px; padding-bottom: 30px; font-size: 20px; line-height: 1.4;}
.mat1_cta_button {
    float: left;
    background: #cabc98;
    color: #153b2c;
    border: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'DM Serif Display', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    margin-top: 30px;
    margin-bottom: 250px;
    box-shadow: 0 4px 15px rgba(202, 188, 152, 0.3);
}
.mat1_cta_button:hover {
    background: #b8a880;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(202, 188, 152, 0.4);
}

.mat2  {float: left; width: 100%; background-color: #f9f5ed; padding-top: 160px; z-index: 2; position: relative;}
.mat2_width {width: 100%; max-width: 1300px; margin-left: auto; margin-right: auto;}
.mat2_left  {float: left; width: 50%;}
.mat2_right  {float: right; width: 50%;}
.mat2_pic {float: left; width: 100%; position: relative;}
.mat2_pic video{width: 90%; border-radius: 40px;}
.mat2_matcha_overlay {
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 50%;
    z-index: 10;
    pointer-events: none;
}
.mat2_nadpis0 {float: left; width: 100%; color: #1c8159; padding-top: 40px; font-size: 28px; font-weight: 300;line-height: 1.1; font-family: 'DM Serif Display', serif;}
.mat2_nadpis {float: left; width: 100%; color: #153b2c;  padding-top: 10px; font-size: 62px; line-height: 1.1; font-family: 'DM Serif Display', serif;}
.mat2_nadpis span {
	background: linear-gradient(135deg, #0c6341 0%, #30da7b 60%, #0c6341 100%);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-style: normal;
}
.mat2_text {float: left; width: 100%; color: #3d423f; padding-top: 40px; font-size: 20px; line-height: 1.4; font-weight: 300;}
.mat2_text2 {float: left; width: 100%; color: #3d423f;  padding-left: 30px; padding-top: 40px; font-size: 20px; line-height: 1.4; font-weight: 300; text-align: left;}
.mat2_text2 ul {list-style: none; padding-left: 0;}
.mat2_text2 li {
	padding-bottom: 10px;
	display: flex;
	align-items: flex-start;
	gap: 15px;
}
.mat2_text2 li::before {
	content: '';
	background-image: url('images/whisk_icon.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	margin-top: 2px;
}

.mat3  {float: left; width: 100%; padding-top: 140px; background-color: #f9f5ed; }
.mat3_width {width: 100%; max-width: 1200px; margin-left: auto; margin-right: auto;}
.mat3_right {float: left; width: 45%; text-align: right;}
.mat3_right img{width: 100%;}
.mat3_left {float: left; width: 55%; text-align: left;}
.mat3_nadpis0 {float: left; width: 100%; color: #1c8159; font-size: 28px; font-weight: 300;line-height: 1.1; font-family: 'DM Serif Display', serif;}
.mat3_nadpis {float: left; width: 100%; color: #153b2c; padding-top: 10px; font-size: 58px; line-height: 1.1; font-family: 'DM Serif Display', serif;}
.mat3_text {float: left; width: 100%; color: #3d423f; padding-top: 40px; font-size: 20px; line-height: 1.4; font-weight: 300;}
.mat3_text2 {float: left; width: 100%; color: #3d423f; padding-left: 30px; padding-top: 40px; font-size: 20px; line-height: 1.4; font-weight: 300; text-align: left;}
.mat3_text2 ul {list-style: none; padding-left: 0;}
.mat3_text2 li {
	padding-bottom: 10px;
	display: flex;
	align-items: flex-start;
	gap: 15px;
}
.mat3_text2 li::before {
	content: '';
	background-image: url('images/whisk_icon.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	margin-top: 2px;
}

.mat4  {float: left; width: 100%; background-color: #f9f5ed;}
.mat4_width {width: 100%; max-width: 1300px; margin-left: auto; margin-right: auto;}
.mat4_box {float: left; width: 100%; background-color: #efe6d4; border-radius: 60px;}
.mat4_right {float: left; width: 60%; margin-top: 70px; padding-right: 50px; text-align: center;}
.mat4_right img{width: 100%;}
.mat4_left {float: left; width: 40%; padding: 5% 2% 5% 5%; text-align: left; font-size: 38px; line-height: 1.4;}


.mat5  {float: left; width: 100%; background-color: #f9f5ed; padding-top: 0px;}
.mat5_width {width: 100%; max-width: 1100px; margin-left: auto; margin-right: auto;}
.mat5_2 {float: left; width: 100%; text-align: center; padding-top: 60px;}
.mat5_2 img{max-height: 500px; z-index: 10; position: relative;}
.mat5_1 {float: left; width: 100%; text-align: center;}
.mat5_nadpis {float: left; width: 100%; color: #153b2c;  font-size: 58px; line-height: 1.1; font-family: 'DM Serif Display', serif;}
.decorative-m {
	font-family: 'Cinzel Decorative', serif;
	font-weight: 700;
	font-size: 1.1em;
	background: linear-gradient(135deg, #0c6341 0%, #30da7b 60%, #0c6341 100%);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-style: normal;
}

.gradient-text-first {
	font-family: 'DM Serif Display', serif;
	font-weight: 500;
	background: linear-gradient(135deg, #9b9204 0%, #d4c842 60%, #9b9204 100%);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-style: normal;
}

.gradient-text {
	font-family: 'DM Serif Display', serif;
	font-weight: 500;
	background: linear-gradient(135deg, #3da817 0%, #64c542 60%, #3da817 100%);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-style: normal;
}
.mat5_text {float: left; width: 100%; padding-right: 20%; padding-left: 20%; color: #3d423f; padding-top: 40px; font-size: 20px; line-height: 1.4; font-weight: 300;}
.mat5_obsah {float: left; width: 100%; padding-top: 40px;}
.mat5_obsah_left {float: left; width: 50%; }
.mat5_obsah_right {float: left; width: 50%; }
.mat5_obsah_pic {float: left; width: 100%;}
.mat5_obsah_pic img{width: 80%; }
.mat5_obsah_nadpis {float: left; width: 100%; font-size: 24px; padding-bottom: 15px; font-weight: 300; color: #153b2c; font-style: italic; line-height: 1.1; font-family: 'DM Serif Display', serif; }
.mat5_obsah_points {float: left; width: 100%; padding-left: 20%; font-size: 18px; font-weight: 300; padding-top: 10px; text-align: left;}
.mat5_obsah_points ul {list-style: none; padding-left: 0;}
.mat5_obsah_points li {
	padding-bottom: 10px;
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

/* Běžná matcha - not.png icons */
.mat5_obsah_left .mat5_obsah_points li::before {
	content: '';
	background-image: url('images/not.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	margin-top: 2px;
}

/* Ceremoniální matcha - check.png icons */
.mat5_obsah_right .mat5_obsah_points li::before {
	content: '';
	background-image: url('images/check.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	margin-top: 2px;
}

.mat6  {float: left; width: 100%; background-color: #f9f5ed; padding-top: 140px; padding-bottom: 120px; overflow: hidden;}
.mat6_width {width: 100%; max-width: 1200px; margin-left: auto; margin-right: auto;}
.mat6_right {float: left; width: 55%; text-align: right;}
.mat6_pic {float: left; width: 100%; position: relative;}
.mat6_pic video{width: 90%; border-radius: 40px;}
.mat6_japan_overlay {
    position: absolute;
    bottom: -18%;
    right: -16%;
    width: 60%;
    z-index: 10;
    pointer-events: none;
}
.mat6_left {float: left; width: 45%;}
.mat6_text {float: left; width: 100%;   color: #4a4a4a; font-size: 32px; line-height: 1.4; font-family: 'DM Serif Display', serif;}
.mat6_nadpis0 {float: left; width: 100%; color: #1c8159; padding-top: 50px; font-size: 28px; font-weight: 300;line-height: 1.1; font-family: 'DM Serif Display', serif;}
.mat6_nadpis {float: left; width: 100%; color: #153b2c;  padding-top: 10px; font-size: 58px; padding-bottom: 60px; line-height: 1.1; font-family: 'DM Serif Display', serif;}
.mat6_nadpis span {
	background: linear-gradient(135deg, #0c6341 0%, #30da7b 60%, #0c6341 100%);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-style: normal;
}

.mat7  {float: left; width: 100%; background-color: #0b804a; margin-top: -200px; padding-bottom: 80px; z-index: 1; position: relative;}
.mat7_width {width: 100%; max-width: 1300px; margin-left: auto; margin-right: auto;}
.mat7_nadpis0 {float: left; width: 100%; color: #26c67c; padding-top: 200px; font-size: 28px; font-weight: 300;line-height: 1.1; font-family: 'DM Serif Display', serif; text-align: center;}
.mat7_nadpis {float: left; width: 100%; color: #fff;  padding-top: 10px; font-size: 58px; line-height: 1.1; font-family: 'DM Serif Display', serif; text-align: center;}
.mat7_text {float: left; width: 100%; padding-left: 20%; padding-right: 20%; margin-top: 40px; color: #fff; font-size: 20px; text-align: center;}
.mat7_obsah {float: left; width: 100%; margin-top: 40px; padding-bottom: 80px; color: #fff; font-size: 20px; text-align: center; position: relative;}
.mat7_slider_container {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 20px;
}
.mat7_cards_wrapper {
    display: flex;
    gap: 40px;
    padding: 0 0px;
    min-width: max-content;
}
.mat7_card {flex: 0 0 360px; display: flex; flex-direction: column; height: 600px;}
.mat7_card_nadpis {width: 100%; color: #153b2c; font-size: 32px; line-height: 1.1; font-family: 'DM Serif Display', serif; text-align: left; margin-bottom: 20px;}
.mat7_card_pic{flex: 1; display: flex; align-items: center; justify-content: center; min-height: 120px;}
.mat7_card_pic img{max-width: 100%; max-height: 100%; object-fit: contain;}
.mat7_card_pic video{max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 30px;}
.mat7_card_text {width: 100%; padding: 15px 5px 30px 5px; font-size: 18px; line-height: 1.4;  text-align: left; margin-top: auto;}

/* Minimalistic scrollbar styling */
.mat7_slider_container::-webkit-scrollbar {
    height: 8px;
}

.mat7_slider_container::-webkit-scrollbar-track {
    background: rgba(21, 59, 44, 0.1);
    border-radius: 4px;
}

.mat7_slider_container::-webkit-scrollbar-thumb {
    background: #153b2c;
    border-radius: 4px;
}

.mat7_slider_container::-webkit-scrollbar-thumb:hover {
    background: #e1d1b3;
}

/* Hide scrollbar arrows/buttons */
.mat7_slider_container::-webkit-scrollbar-button {
    display: none;
}

/* Firefox scrollbar styling */
.mat7_slider_container {
    
    scrollbar-color: #066338 rgb(11 128 74);
}


.mat8  {float: left; width: 100%; background-color: #153b2c; padding-top: 120px; margin-top: -60px; border-radius: 60px 60px 0 0; z-index: 10; position: relative;}
.mat8_width {width: 100%; max-width: 1300px; margin-left: auto; margin-right: auto;}
.mat8_nadpis {float: left; width: 100%; color: #f9f5ed; font-size: 58px; line-height: 1.1; font-family: 'DM Serif Display', serif; text-align: center;}
/* Product Section Styles */
.mat8_product_section_wrapper {float: left; width: 100%; margin-bottom: 60px;}
.mat8_product_section {
	display: flex;
	align-items: flex-start;
	gap: 0px;
	padding: 80px 0;
	max-width: 1300px;
	margin: 0 auto;
	
}

.mat8_product_left {
	flex: 1.15;
	text-align: center;
}

.mat9  {float: left; width: 100%; background-color: #153629; padding-top: 60px; padding-bottom: 100px;}
.mat9_width {width: 100%; max-width: 1300px; margin-left: auto; margin-right: auto;}

/* Product Slideshow Styles */
.product-slideshow {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.main-image-container {
	text-align: center;
}

.main-product-image {
	width: 80%;
	max-width: 700px;
	height: auto;
	padding-top: 0px;
	transition: opacity 0.3s ease;
}

.thumbnails-container {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 15px;
	padding: 0 20px;
	max-width: 600px;
	margin: 0 auto;
}

.thumbnail {
	border: 2px solid transparent;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 4px;
}

.thumbnail:hover {
	border-color: #cabc98;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(202, 188, 152, 0.3);
}

.thumbnail.active {
	border-color: #cabc98;
	background: rgba(202, 188, 152, 0.2);
	box-shadow: 0 4px 15px rgba(202, 188, 152, 0.4);
}

.thumbnail img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}

.thumbnail:hover img {
	transform: scale(1.05);
}

/* Responsive adjustments for thumbnails */
@media (max-width: 768px) {
	
	
	.main-product-image {
		max-width: 100%;
		padding-top: 40px;
	}
}

@media (max-width: 480px) {

	
	.main-product-image {
		padding-top: 30px;
	}
}

.mat8_product_right {
	flex: 0.95;
	padding-left: 20px;
	padding-top: 50px;
}

.product_brand {
	color: #cabc98;
	font-size: 16px;
	font-weight: 500;
	font-family: 'Inter', sans-serif;
	letter-spacing: 2px;
	
	text-transform: uppercase;
}

.product_title {
	color: #ffffff;
	font-size: 48px;
	font-weight: 500;
	font-family: 'DM Serif Display', serif;
	line-height: 1.1;
	margin-bottom: 25px;
}

.product_description {
	color: #f9f5ed;
	font-size: 18px;
	line-height: 1.5;
	font-weight: 300;
	margin-bottom: 20px;
}

.product_contains_title {
	color: #cabc98;
	font-size: 20px;
	font-weight: 500;
	font-family: 'DM Serif Display', serif;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.product_contains_list {
	margin-bottom: 30px;
}

.contains_item {
	color: #f9f5ed;
	font-size: 16px;
	line-height: 1.4;
	margin-bottom: 5px;
	padding-left: 20px;
	position: relative;
}

.contains_item::before {
	content: '•';
	color: #cabc98;
	font-size: 18px;
	position: absolute;
	left: 0;
	top: 0;
}

.product_price_section {
	border-top: 1px solid rgba(202, 188, 152, 0.3);
	padding-top: 15px;
}

.product_price {
	color: #ffffff;
	font-size: 36px;
	font-weight: 300;
	font-family: 'DM Serif Display', serif;
	margin-bottom: 10px;
}

.product_controls {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.quantity_selector {
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50px;
	overflow: hidden;
	border: 1px solid rgba(202, 188, 152, 0.3);
}

.quantity_btn {
	background: #cabc98;
	color: #ffffff;
	border: none;
	width: 45px;
	height: 45px;
	font-size: 20px;
	font-weight: 300;
	cursor: pointer;
	transition: background 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.quantity_btn:hover {
	background: #b8a880;
}

.quantity_display {
	background: #ffffff;
	color: #153b2c;
	width: 55px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 500;
	font-family: 'DM Serif Display', serif;
}

.add_to_cart_btn {
	background: #cabc98;
	color: #ffffff;
	border: none;
	padding: 15px 30px;
	border-radius: 50px;
	font-size: 18px;
	font-weight: 500;
	font-family: 'DM Serif Display', serif;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(202, 188, 152, 0.3);
}

.add_to_cart_btn:hover {
	background: #b8a880;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(202, 188, 152, 0.4);
}
.mat8_nadpis2 {float: left; width: 100%; color: #cabc98; font-size: 28px; padding-top: 30px; line-height: 1.1; font-family: 'DM Serif Display', serif; text-align: center; margin-bottom: 40px;}

/* Mat8 Slider Styles */
.mat8_obsah {float: left; width: 100%; margin-top: 40px; color: #f9f5ed; font-size: 20px; text-align: center; position: relative;}
.mat8_slider_container {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 20px;
}
.mat8_cards_wrapper {
    display: flex;
    gap: 20px;
    padding: 0 20px;
    min-width: max-content;
}
.mat8_card {flex: 0 0 230px; padding: 30px 20px; border: 1px solid #cabc98; border-radius: 20px; display: flex; flex-direction: column; height: 280px;}
.mat8_card_pic{flex: 1; display: flex; align-items: center; justify-content: center; min-height: 120px;}
.mat8_card_pic img{max-width: 100%; max-height: 100%; object-fit: contain;}
.mat8_card_text {width: 100%; color: #cabc98; font-size: 20px; line-height: 1.1; font-family: 'DM Serif Display', serif; text-align: left; margin-top: auto;}

/* Mat8 Minimalistic scrollbar styling */
.mat8_slider_container::-webkit-scrollbar {
    height: 8px;
}

.mat8_slider_container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.mat8_slider_container::-webkit-scrollbar-thumb {
    background: #cabc98;
    border-radius: 4px;
}

.mat8_slider_container::-webkit-scrollbar-thumb:hover {
    background: #cabc98;
}

/* Hide mat8 scrollbar arrows/buttons */
.mat8_slider_container::-webkit-scrollbar-button {
    display: none;
}

/* Firefox mat8 scrollbar styling */
.mat8_slider_container {
    scrollbar-width: thin;
    scrollbar-color: #cabc98 rgba(255, 255, 255, 0.1);
}

/* Mat8 Price and Cart Section */
.mat8_price_section {
    width: 100%;
    margin-top: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mat8_price_text {
    color: #cabc98;
    font-size: 28px;
    line-height: 1.1;
    font-family: 'DM Serif Display', serif;
    margin-bottom: 30px;
    margin-top: 40px;
    text-align: center;
}

.mat8_price_display {
    
    color: #ffffff;
    font-size: 48px;
    font-weight: 300;
    font-family: 'DM Serif Display', serif;
    padding: 10px 30px;
    border-radius: 12px;
    min-width: 180px;
    text-align: center;
   
}

.mat8_cart_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.mat8_quantity_selector {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.mat8_quantity_btn {
    background: #cabc98;
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mat8_quantity_btn:hover {
    background: #b8a880;
}

.mat8_quantity_display {
    background: #ffffff;
    color: #153b2c;
    width: 60px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    font-family: 'DM Serif Display', serif;
}

.mat8_add_to_cart {
    background: #cabc98;
    color: #ffffff;
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    font-family: 'DM Serif Display', serif;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.mat8_add_to_cart:hover {
	background: #b8a880;
}

/* Footer Section */
.footer_section {
	width: 100%;
	text-align: center;
	padding: 0;
	margin: 0;
}

.footer-image {
	width: 100%;
	height: auto;
	display: block;
}

.mat8_cart_icon {
    font-size: 20px;
}





@media (max-width: 1320px) {
.mat1_width {width: 96%; margin-left: 2%; margin-right: 2%;}
.mat2_width {width: 96%; margin-left: 2%; margin-right: 2%;}
.mat3_width {width: 96%; margin-left: 2%; margin-right: 2%;}
.mat4_width {width: 96%; margin-left: 2%; margin-right: 2%;}
.mat5_width {width: 96%; margin-left: 2%; margin-right: 2%;}
.mat6_width {width: 96%; margin-left: 2%; margin-right: 2%;}
.mat7_width {width: 96%; margin-left: 2%; margin-right: 2%;}
.mat8_width {width: 96%; margin-left: 2%; margin-right: 2%;}
.mat9_width {width: 96%; margin-left: 2%; margin-right: 2%;}

.mat1_nadpis0 { padding-top: 60px;}
.mat1_nadpis {font-size: 72px;}
.mat1_left { width: 55%;}
.mat1_right { width: 45%;}
.mat1_right img { width: 200%; margin-left: -100px; margin-top: -350px;}
.mat1_cta_button {margin-bottom: 200px;}

.mat3 { padding-top: 120px;}

.mat6_nadpis0 { padding-top: 0px;}
}

@media (max-width: 1200px) {
.mat1_width {width: 96%; margin-left: 2%; margin-right: 2%;}
.mat1_right img { width: 220%; margin-left: -140px; margin-top: -350px;}


.mat2_nadpis {font-size: 62px;}
.mat2_nadpis0 {padding-top: 0px;}


.mat3_nadpis {font-size: 62px;}
.mat3_nadpis0 {padding-top: 0px;}
.mat3_right {padding-top: 50px;}
.mat3_right img {width: 130%; margin-left: -50px;}

.mat4_left {font-size: 34px; line-height: 1.3;}
  
.mat5_nadpis {font-size: 62px;}
}


@media (max-width: 1100px) {
.left-menu {gap: 30px;}
.mat1_menu_center img { max-width: 80px;}
.mat1_left { width: 65%;}
.mat1_right { width: 35%;}
.mat1_nadpis0 { padding-top: 40px;}
.mat1_nadpis {font-size: 62px;}
.mat1_width {width: 96%; margin-left: 2%; margin-right: 2%;}
.mat1_right img { width: 260%; margin-left: -140px; margin-top: -150px;}

.mat2_nadpis {font-size: 52px;}
.mat3_nadpis {font-size: 52px;}
.mat3 {padding-bottom: 40px;}

.mat4_left {font-size: 32px; line-height: 1.3;}
.mat4_right { margin-top: 90px;}

.mat6_nadpis {font-size: 52px;}
.mat6_pic {padding-top: 40px;}
.mat6_text {font-size: 28px;}

.mat5_nadpis {font-size: 52px;}

.mat5_obsah_left { width: 50%; padding-left: 5%;}
.mat5_obsah_right{ width: 50%; padding-right: 5%;}

.mat7_nadpis {font-size: 52px;}

.mat8_nadpis {font-size: 52px;}
}

@media (max-width: 1000px) {
.mat4_left {font-size: 28px; line-height: 1.3;}
.mat4_right { margin-top: 70px;}
.mat3 {padding-bottom: 60px;}
.mat5_text {padding-left: 15%; padding-right: 15%;}
.mat5_obsah_points {padding-left: 15%;}
}

@media (max-width: 900px) {

.mat1_left { width: 100%; padding-right: 30%; z-index: 4; position: relative;}
.mat1_right { width: 100%;}
.mat1_right img { width: 140%; margin-left: 40px; margin-top: -780px;}

.mat2_left { width: 100%; padding-top: 50px; text-align: center;}
.mat2_pic video{ width: 70%;}
.mat2_right { width: 100%; padding-left: 10%; padding-right: 10%;}
.mat2 { padding-top: 130px;}
.mat2_matcha_overlay {bottom: -20%; left: -5%; width: 40%;}

.mat3_left { width: 100%; padding-top: 50px; text-align: center; padding-left: 10%; padding-right: 10%; text-align: left;}
.mat3_right img{ width: 70%; margin-left: -15%;}
.mat3_right { width: 100%; text-align: center;}
.mat3 {padding-bottom: 0px;}

.mat4_left { width: 100%; text-align: center; padding: 5% 10% 5% 10%; line-height: 1.4;}
.mat4_right{ width: 100%; text-align: center; margin-top: 30px; padding-right: 00px;} 
.mat4_right img{ width: 70%; text-align: center;} 
.mat4_box {padding: 30px 0px;} 

.mat6 {padding-top: 90px;}
.mat6_left { width: 100%; padding-top: 50px; text-align: center; padding-left: 10%; padding-right: 10%; text-align: left;}
.mat6_right video{ width: 70%;}
.mat6_right { width: 100%; text-align: center; padding-top: 40px;}
.mat6_japan_overlay { bottom: -17%; right: 3%; width: 40%;}

.mat5_obsah_points {padding-left: 5%;}

.mat7_text {padding-left: 15%; padding-right: 15%;}

.mat8 {border-radius: 40px 40px 0 0;}

.mat8_product_section {display: inline-block; padding: 20px 0 40px 0;}
.mat8_product_left {width: 100%; padding-left: 10%; padding-right: 10%; text-align: center;}
.mat8_product_right {width: 100%; padding-left: 10%; padding-right: 10%; text-align: center;}
.product_contains_list {text-align: left; padding-left: 30%;}

.product_controls {
	justify-content: center;
}
}

@media (max-width: 800px) {
.mat1_left { width: 100%; padding-right: 25%; z-index: 4; position: relative;}
.mat1_right img { width: 140%; margin-left: 40px; margin-top: -700px;}

.mat2_left { width: 100%; padding-top: 50px; text-align: center;}
.mat2_pic video{ width: 80%;}
.mat2_right { width: 100%; padding-left: 5%; padding-right: 5%;}
.mat2 { padding-top: 130px;}
.mat2_matcha_overlay {bottom: -20%; left: -5%; width: 40%;}

.mat3_left { width: 100%; padding-left: 5%; padding-right: 5%;  padding-top: 30px;}

.mat4_right img{ width: 80%; text-align: center;} 

.mat6_left { width: 100%; padding-left: 5%; padding-right: 5%;  padding-top: 30px;}
.mat6_right video{ width: 80%;}
.mat6_japan_overlay { bottom: -18%; right: -3%; width: 45%;}

.mat5_text {padding-left: 10%; padding-right: 10%;}

.mat5_obsah_left { width: 50%; padding-left: 0%;}
.mat5_obsah_right{ width: 50%; padding-right: 0%;}



}

@media (max-width: 750px) {
.mat1_left { width: 100%; padding-right: 25%; z-index: 4; position: relative;}
.mat1_right img { width: 140%; margin-left: 40px; margin-top: -670px;}

}

@media (max-width: 700px) {

.mat1_left { width: 100%; z-index: 4; padding-left: 0%; padding-right: 0%; position: relative; text-align: center;}
.mat1_nadpis0 { padding-top: 40px; text-align: center;}
.mat1_nadpis {font-size: 62px; text-align: center;}
.mat1_text {text-align: center; padding-left: 10%; padding-right: 10%; text-shadow: 10px 10px 10px rgba(21, 59, 44, 1);}
.mat1_right img { width: 140%; margin-left: -50px; margin-top: -450px;}
.mat1_cta_button {float: none; margin-top: 20px;}

.mat2_left { width: 100%; padding-top: 50px; text-align: center;}
.mat2_pic video{ width: 80%;}
.mat2_right { width: 100%; padding-left: 2%; padding-right: 2%;}
.mat2 { padding-top: 130px;}
.mat2_matcha_overlay {bottom: -20%; left: -10%; width: 50%;}

.mat3_left { width: 100%; padding-left: 2%; padding-right: 2%;}

.mat4_right img{ width: 90%; text-align: center;} 


.mat6_left { width: 100%; padding-left: 2%; padding-right: 2%;  padding-top: 30px;}
.mat6_right video{ width: 80%;}
.mat6_japan_overlay { bottom: -18%; right: -3%; width: 45%;}

.mat5_text {padding-left: 5%; padding-right: 5%;}

.mat5_obsah_pic img { width: 90%;}
.mat5_obsah_points {font-size: 16px;}

.mat7_text {padding-left: 5%; padding-right: 5%;}
}

@media (max-width: 600px) {
.mat2_nadpis {font-size: 46px;}
.mat2_nadpis0 {font-size: 26px;}

.mat3_nadpis {font-size: 46px;}
.mat3_nadpis0 {font-size: 26px;}

.mat4_left { width: 100%; text-align: center; padding: 5% 5% 5% 5%; line-height: 1.4; font-size: 26px;}
.mat4_right{ width: 100%; text-align: center; margin-top: 30px;} 
.mat4_right img{ width: 90%; text-align: center;} 
.mat4_box {padding: 30px 0px;} 

.mat6_nadpis {font-size: 46px;}
.mat6_nadpis0 {font-size: 26px;}

.mat5_nadpis {font-size: 46px; padding-left: 20%;  padding-right: 20%;}

.mat5_obsah_nadpis { font-size: 22px; text-align: left;}
.mat5_obsah_points li { gap: 5px; margin-top: -5px;}
.mat5_obsah_points {  padding-left: 0%; padding-right: 5%;}
.mat5_obsah_left .mat5_obsah_points li::before { width: 16px; height: 16px;}

.mat5_2 img {max-height: 500px; width: 90%;}

.mat7_nadpis {font-size: 46px; padding-left: 5%; padding-right: 5%;}
.mat7_nadpis0 {font-size: 26px;}
.mat7_card {flex: 0 0 280px; display: flex; flex-direction: column; height: 500px;}
.mat7_cards_wrapper {gap: 10px;}

.mat8_nadpis {font-size: 46px; padding-left: 5%; padding-right: 5%;}
.mat8 { padding-top: 90px;}
.mat8_product_left { padding-left: 5%;  padding-right: 5%;}
.mat8_product_right { padding-left: 5%;  padding-right: 5%;}
.product_title { font-size: 44px;}
.product_contains_list { padding-left: 25%;}

}

@media (max-width: 550px) {

.mat1_nadpis {font-size: 56px; text-align: center;}
.mat1_text {text-align: center; padding-left: 5%; padding-right: 5%; padding-top: 5px; text-shadow: 10px 10px 10px rgba(21, 59, 44, 1);}
.mat1_right img { width: 140%; margin-left: -40px; margin-top: -420px;}
.mat1_cta_button {float: none; margin-top: 20px;}
}

@media (max-width: 500px) {
.mat1_nadpis0 {font-size: 26px;}
.mat1_nadpis {font-size: 52px; text-align: center;}
.mat1_text {text-align: center; font-size: 18px; padding-left: 2%; padding-right: 2%; padding-top: 0px; text-shadow: 10px 10px 10px rgba(21, 59, 44, 1);}
.mat1_right img { width: 140%; margin-left: -30px; margin-top: -390px;}
.mat1_cta_button {float: none; margin-top: 20px;}

.mat2_nadpis {font-size: 42px;}
.mat2_nadpis0 {font-size: 26px;}
.mat2_text {font-size: 18px; padding-top: 30px;}
.mat2_text2 {padding-left: 10px; font-size: 18px;}
.mat2_pic video {width: 98%; border-radius: 30px;}
.mat2_matcha_overlay {bottom: -20%; left: -10%; width: 50%;}

.mat3_nadpis {font-size: 42px;}
.mat3_nadpis0 {font-size: 26px;}
.mat3_text {font-size: 18px; padding-top: 30px;}
.mat3_text2 {padding-left: 10px; font-size: 18px;}
.mat3 { padding-top: 90px;}
.mat3_right img{ width: 90%; margin-left: -23%;}

.mat4_left { width: 100%; text-align: center; padding: 5% 5% 5% 5%; line-height: 1.4; font-size: 24px;}
.mat4_right{ width: 100%; text-align: center; margin-top: 30px;} 
.mat4_right img{ width: 94%; text-align: center;} 
.mat4_box {padding: 30px 0px; border-radius: 30px;} 

.mat6_nadpis {font-size: 42px;}
.mat6_nadpis0 {font-size: 26px;}
.mat6_right video{ width: 98%; border-radius: 30px;}
.mat6_japan_overlay { bottom: -18%; right: -13%; width: 60%;}
.mat6_text {font-size: 24px;}
.mat6_pic {padding-top: 30px;}
.mat6_left { padding-top: 0px;}

.mat5_nadpis {font-size: 46px;}
.mat5_text {font-size: 18px; padding-top: 30px;}

.mat5_obsah_pic img {width: 100%;}
.mat5_obsah_nadpis {font-size: 20px;}
.mat5_obsah_points {font-size: 15px;}

.mat7_nadpis {font-size: 42px; padding-left: 2%; padding-right: 2%;}
.mat7_nadpis0 {font-size: 26px;}
.mat7_text {font-size: 18px; }

.mat8_nadpis {font-size: 42px; padding-left: 2%; padding-right: 2%;}

.mat7_obsah {padding-bottom: 50px;}

.mat8_product_left { padding-left: 0%;  padding-right: 0%;}
.thumbnails-container { padding: 0 0px; gap: 7px;}

.product_title { font-size: 42px;}
.product_contains_list { padding-left: 20%;}

.mat8_card { flex: 0 0 180px; height: 230px;}
.mat8_cards_wrapper {padding: 0 0px; gap: 10px;}
.mat8_nadpis2 {padding-top: 10px; margin-bottom: 20px;}
.footer-image {  width: 180%; margin-left: -40%;}
.footer_section  { overflow: hidden;}
}

@media (max-width: 450px) {
.mat1_nadpis0 {font-size: 24px; padding-top: 30px;}
.mat1_nadpis {font-size: 48px;}
.mat1_right img { width: 150%; margin-left: -30px; margin-top: -360px;}

.mat2_nadpis {font-size: 38px;}
.mat2_nadpis0 {font-size: 24px;}

.mat3_nadpis {font-size: 38px;}
.mat3_nadpis0 {font-size: 24px;}

.mat6_nadpis {font-size: 38px;}
.mat6_nadpis0 {font-size: 24px;}

.mat5_nadpis {font-size: 42px; padding-left: 15%; padding-right: 15%;}
.mat5_text { padding-left: 2%;   padding-right: 2%; }
.mat5_2 img {max-height: 500px; width: 100%;}

.mat7_nadpis {font-size: 38px;}
.mat7_nadpis0 {font-size: 24px;}
.mat7_card {flex: 0 0 260px; display: flex; flex-direction: column; height: 500px;}
.mat7_cards_wrapper {gap: 10px;}
.mat7_text { padding-left: 2%;   padding-right: 2%; }

.mat8_nadpis {font-size: 38px;}
.mat8 { padding-top: 80px;}

.product_contains_list { padding-left: 15%;}

}

@media (max-width: 420px) {
.mat1_nadpis0 {font-size: 22px; }
.mat1_nadpis {font-size: 42px;}
.mat1_right img { width: 150%; margin-left: -30px; margin-top: -360px;}
.mat1_text {text-align: center; font-size: 18px; padding-left: 0%; padding-right: 0%;}

.mat2_text2 {padding-left: 0px; font-size: 18px;}

.mat3_text2 {padding-left: 0px; font-size: 18px;}

.mat4_left { width: 100%; text-align: center; padding: 5% 5% 5% 5%; line-height: 1.4; font-size: 22px;}
.product_contains_list { padding-left: 10%;}
}

@media (max-width: 400px) {
.mat2_nadpis {font-size: 36px;}
.mat2_nadpis0 {font-size: 22px;}

.mat3_nadpis {font-size: 36px;}
.mat3_nadpis0 {font-size: 22px;}

.mat6_nadpis {font-size: 36px;}
.mat6_nadpis0 {font-size: 22px;}

.mat5_nadpis {font-size: 40px;}

.mat7_nadpis {font-size: 36px;}
.mat7_nadpis0 {font-size: 22px;}

.mat8_nadpis {font-size: 36px;}

.product_title { font-size: 38px;}
}









/* Hamburger Menu Responsive Styles - 900px and smaller */
@media (max-width: 900px) {
	/* Show hamburger button */
	.hamburger-btn {
		display: flex;
	}
	
	/* Show overlay when active */
	.mobile-menu-overlay.active {
		display: block;
	}
	
	/* Transform left menu into mobile menu */
	.left-menu {
		position: fixed;
		top: 0;
		left: -100%;
		width: 300px;
		height: 100vh;
		background: linear-gradient(135deg, #153b2c 0%, #0f2d21 100%);
		flex-direction: column;
		gap: 0;
		padding: 80px 30px 30px;
		z-index: 1001;
		box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
		overflow-y: auto;
		align-items: flex-start;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}
	
	.left-menu.active {
		left: 0;
	}
	
	/* Mobile menu links */
	.menu-link {
		width: 100%;
		padding: 18px 0;
		font-size: 20px;
		font-weight: 400;
		border-bottom: 1px solid rgba(202, 188, 152, 0.15);
		font-family: 'DM Serif Display', serif;
	}
	
	.menu-link:first-child {
		border-top: 1px solid rgba(202, 188, 152, 0.15);
	}
	
	.menu-link::after {
		display: none;
	}
	
	.menu-link:hover {
		padding-left: 10px;
		color: #cabc98;
		transform: translateY(0);
	}
	
	/* Adjust menu layout widths */
	.mat1_menu_left {
		width: 30%;
	}
	
	.mat1_menu_center {
		width: 40%;
	}
	
	.mat1_menu_right {
		width: 30%;
	}
	
	/* Adjust cart mockup for smaller screens */
	.cart-mockup {
		padding: 8px 15px;
		gap: 8px;
	}
	
	.cart-value {
		font-size: 14px;
	}
	
	.cart-icon {
		width: 20px;
		height: 20px;
	}
}

/* Further adjustments for very small screens */
@media (max-width: 600px) {
	.left-menu {
		width: 260px;
		padding: 70px 25px 25px;
	}
	
	.mobile-menu-overlay {
		left: 260px;
		width: calc(100% - 260px);
	}
	
	.menu-link {
		font-size: 18px;
		padding: 15px 0;
	}
	
	.mat1_menu_center img {
		max-width: 70px;
	}
	
	.cart-mockup {
		padding: 6px 12px;
	}
	
	.cart-value {
		font-size: 13px;
	}
}

/* Extra small screens - hide cart value text */
@media (max-width: 450px) {
	.cart-value {
		display: none;
	}
	
	.cart-mockup {
		padding: 8px;
	}
}

/* Sticky CTA adjustments for small screens */
@media (max-width: 602px) {
	.sticky-cta {
		padding: 14px 20px;
		gap: 10px;
		white-space: nowrap;
	}
	
	.sticky-cta-text {
		font-size: 18px;
		white-space: nowrap;
	}
	
	.sticky-cta-price {
		font-size: 18px;
		padding: 4px 10px;
		white-space: nowrap;
	}
}

@media (max-width: 450px) {
	.sticky-cta {
		padding: 12px 18px;
		gap: 8px;
	}
	
	.sticky-cta-text {
		font-size: 17px;
	}
	
	.sticky-cta-price {
		font-size: 17px;
		padding: 3px 8px;
	}
}