@charset "UTF-8";
/*
  Theme Name: eStartup
  Theme URL: https://bootstrapmade.com/estartup-bootstrap-landing-page-template/
  Author: BootstrapMade.com
  License: https://bootstrapmade.com/license/
*/
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
	background-color: #fff;
	color: #333;
	font-size: 14px;
	overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}

h2 {
	color: #000;
	font-weight: 600;
}

h4 {
	color: #000;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	line-height: 2;
}

h5 {
	color: #626262;
	font-size: 14px;
	font-weight: 500;
}

a {
	letter-spacing: 2px;
	text-decoration: none;
}

ul {
	letter-spacing: 1px;
}

li {
	color: #626262;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 2px;
	line-height: 30px;
	text-transform: capitalize;
}

p {
	color: #505050;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 0.5px;
	line-height: 2;
	margin-bottom: 20px;
}

span {
	letter-spacing: 1px;
}

.img-fluid {
	height: 60px;
	margin-bottom: 30px;
	width: 60px;
}

.container-full {
	padding-left: 0;
	padding-right: 0;
}

.btn {
	border: 1px solid #fff;
	border-radius: 50px;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	padding: 15px 40px;
	text-transform: uppercase;
	-moz-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
}

.btn-default:hover {
	color: #fff;
	background-color: #e6e6e6;
	border-color: #adadad;
}

.fa {
	font-size: 13px;
}

/* Back to top button */
.back-to-top {
	position: fixed;
	display: none;
	background: #3e4bff;
	line-height: 1;
	color: #fff;
	padding: 7px 12px 13px 12px;
	font-size: 16px;
	border-radius: 2px;
	right: 15px;
	bottom: 15px;
	transition: background 0.5s;
}

@media (max-width: 768px) {
	.back-to-top {
		bottom: 15px;
	}
}

.back-to-top:focus {
	background: #3e4bff;
	color: #fff;
	outline: none;
}

.back-to-top:hover {
	background: #55b03f;
	color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.scroll-header {
	background: #fff;
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
}

/* TIP-TOUR Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	max-height: 80px;
	background: #ffffff;
	z-index: 1000;
	transition: box-shadow 0.3s ease;
}

.header.scroll-header {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.header__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-height: 80px;
	padding: 0 24px;
	height: 70px;
}

.header__brand h1 {
	margin: 0;
	padding: 0;
	line-height: 0;
}

.header__brand h1 a {
	display: flex;
	align-items: center;
}

.header__logo {
	height: 55px;
	width: auto;
	display: block;
	object-fit: contain;
}

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

.header__cart {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1a1a1a;
	text-decoration: none;
	width: 44px;
	height: 44px;
	transition: color 0.3s ease;
}

.header__cart:hover {
	color: #3e4bff;
}

.header__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: none;
	background: transparent;
	color: #1a1a1a;
	cursor: pointer;
	padding: 0;
	transition: color 0.3s ease;
}

.header__toggle:hover {
	color: #3e4bff;
}

@media (max-width: 1023px) {
	.header__toggle {
		display: flex;
	}
}

/* Mobile slide-in navigation panel */
.header__mobile-nav {
	position: fixed;
	top: 0;
	right: -280px;
	width: 280px;
	height: 100vh;
	background: #1a1a1a;
	z-index: 1001;
	padding-top: 80px;
	transition: right 0.3s ease;
	overflow-y: auto;
}

.header__mobile-nav.active {
	right: 0;
}

.mobile-nav__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-nav__list li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__list li a {
	display: block;
	padding: 16px 24px;
	color: #ffffff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 1px;
	transition: background-color 0.3s ease;
	min-height: 44px;
}

.mobile-nav__list li a:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.header__mobile-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
}

.header__mobile-overlay.active {
	display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
	width: 100%;
	height: 100vh;
	background-color: #2a2c30;
	background-image: url('https://cdn.sumup.store/shops/58026157/settings/th1024/fccfcfe1-e5b9-4fe4-835d-b3b9e3c236f8.jpeg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
}

#hero .hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.55);
	z-index: 1;
}

#hero .hero-container {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	height: 100%;
	padding: 0 20px;
}

#hero h1 {
	margin: 0 0 16px 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
}

#hero h2 {
	color: #f0f0f0;
	margin-bottom: 30px;
	font-size: 24px;
	font-weight: 300;
}

#hero .btn-cta {
	display: inline-block;
	padding: 14px 40px;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	background-color: #3e4bff;
	border: 2px solid #3e4bff;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
}

#hero .btn-cta:hover {
	background-color: #fff;
	color: #3e4bff;
}

@media (max-width: 768px) {
	#hero h1 {
		font-size: 24px;
		line-height: 1.3;
	}

	#hero h2 {
		font-size: 16px;
		line-height: 1.4;
		margin-bottom: 24px;
	}

	#hero .btn-cta {
		padding: 12px 32px;
		font-size: 14px;
	}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu,
.nav-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-menu ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	z-index: 99;
}

.nav-menu li {
	position: relative;
	white-space: nowrap;
}

.nav-menu > li {
	float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
	display: block;
}

.nav-menu ul ul {
	top: 0;
	left: 100%;
}

.nav-menu ul li {
	min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
	padding-right: 22px;
}

.sf-arrows .sf-with-ul:after {
	content: "\f107";
	position: absolute;
	right: 8px;
	margin-top: 1px;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
	content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
	float: right;
	margin: 0 0 0 0;
}

@media (max-width: 1024px) {
	#nav-menu-container {
		display: none;
	}
}

/* Nav Meu Styling */
.nav-menu a {
	padding: 8px 8px;
	text-decoration: none;
	display: inline-block;
	color: #555;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-size: 14px;
	outline: none;
	letter-spacing: 0;
	transition: 0.3s;
}

.nav-menu li:hover > a,
.nav-menu > .menu-active > a {
	color: #3e4bff;
}

.nav-menu > li {
	margin-left: 10px;
}

.nav-menu ul {
	margin: 0;
	padding: 10px;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	background: #fff;
}

.nav-menu ul li {
	transition: 0.3s;
}

.nav-menu ul li a {
	padding: 5px 10px;
	color: #333;
	transition: 0.3s;
	display: block;
	font-size: 14px;
	text-transform: none;
}

.nav-menu ul li:hover > a {
	color: #3e4bff;
}

.nav-menu ul ul {
	margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
	position: fixed;
	right: 0;
	top: 0;
	z-index: 999;
	margin: 4px 20px 0 0;
	border: 0;
	background: none;
	font-size: 24px;
	display: none;
	transition: all 0.4s;
	outline: none;
	cursor: pointer;
}

#mobile-nav-toggle i {
	color: #555;
	font-size: 24px;
}

@media (max-width: 1024px) {
	#mobile-nav-toggle {
		display: inline;
	}
}

/* Mobile Nav Styling */
#mobile-nav {
	position: fixed;
	top: 0;
	padding-top: 18px;
	bottom: 0;
	z-index: 998;
	background: rgba(52, 59, 64, 0.9);
	left: -260px;
	width: 260px;
	overflow-y: auto;
	transition: 0.4s;
}

#mobile-nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#mobile-nav ul li {
	position: relative;
}

#mobile-nav ul li a {
	color: #fff;
	font-size: 14px;
	overflow: hidden;
	padding: 6px 22px 6px 15px;
	position: relative;
	text-decoration: none;
	width: 100%;
	display: block;
	outline: none;
	letter-spacing: 0;
}

#mobile-nav ul li a:hover {
	color: #fff;
}

#mobile-nav ul li li {
	padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
	position: absolute;
	right: 0;
	z-index: 99;
	padding: 15px;
	cursor: pointer;
	color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
	color: #3e4bff;
}

#mobile-nav ul .menu-item-active {
	color: #3e4bff;
}

#mobile-body-overly {
	width: 100%;
	height: 100%;
	z-index: 997;
	top: 0;
	left: 0;
	position: fixed;
	background: rgba(52, 59, 64, 0.9);
	display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
	overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
	left: 0;
}

body.mobile-nav-active #mobile-nav-toggle i {
	color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
.padd-section {
	padding-bottom: 80px;
	padding-top: 80px;
}

@media (max-width: 992px) {
	.padd-section {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}

.section-title {
	margin-bottom: 80px;
}

@media (max-width: 992px) {
	.section-title {
		margin-bottom: 40px;
	}
}

.section-title h2 {
	font-family: "Roboto", sans-serif;
	font-size: 45px;
	font-weight: 100;
	letter-spacing: 2px;
	margin-bottom: 20px;
	text-transform: capitalize;
}

.section-title .separator {
	margin: 0;
}

.separator {
	color: #626262;
	font-family: "Roboto", sans-serif;
	font-size: 15px;
	font-weight: 300;
	margin-bottom: 30px;
	text-transform: capitalize;
}

/* Get Started Section
--------------------------------*/
#get-started {
	display: inline-block;
	height: 100%;
	width: 100%;
}

#get-started .feature-block {
	background: #fff none repeat scroll 0 0;
	padding: 30px 20px;
	transition: all 0.5s ease-in-out 0s;
}

@media (max-width: 991px) {
	#get-started .feature-block {
		margin-bottom: 30px;
	}
}

#get-started .feature-block:hover {
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
	transition: all 0.5s ease-in-out 0s;
}

#get-started .feature-block h4 {
	margin-bottom: 20px;
}

#get-started .feature-block p {
	margin-bottom: 20px;
}

#get-started .feature-block a {
	color: #505050;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
	text-transform: capitalize;
	transition: 0.3s;
}

#get-started .feature-block a:hover {
	color: #3e4bff;
}

/* About Us Section
--------------------------------*/
#about-us img {
	max-width: 100%;
}

#about-us .about-content {
	padding-top: 60px;
}

#about-us .about-content h2 {
	color: #252525;
	font-family: "roboto";
	font-size: 39px;
	font-weight: 100;
	letter-spacing: 2px;
	margin-bottom: 20px;
	text-transform: capitalize;
}

#about-us .about-content span {
	font-weight: 700;
	padding-right: 10px;
	text-transform: uppercase;
}

#about-us .about-content ul li {
	line-height: 36px;
}

#about-us .about-content ul li .fa {
	padding-right: 20px;
}

/* Features Section
--------------------------------*/
#features {
	display: inline-block;
	height: 100%;
	width: 100%;
}

#features .feature-block {
	background: #fff none repeat scroll 0 0;
	padding: 30px 20px;
	margin-bottom: 30px;
	transition: all 0.5s ease-in-out 0s;
}

#features .feature-block:hover {
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
	transition: all 0.5s ease-in-out 0s;
}

#features .feature-block h4 {
	margin-bottom: 20px;
}

#features .feature-block p {
	margin-bottom: 0;
}

/* Screenshots Section
--------------------------------*/
.owl-dot.active > span {
	height: 10px !important;
	width: 10px !important;
}

.owl-theme .owl-dots .owl-dot span {
	height: 10px !important;
	width: 10px !important;
}

.owl-item img {
	cursor: pointer;
}

.owl-stage-outer {
	margin-bottom: 30px;
}

.owl-theme .owl-nav {
	display: none;
	margin-top: 10px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background: #3e4bff;
}

.owl-theme .owl-dots .owl-dot span {
	background: #ddd;
}

/* Video Section
--------------------------------*/
#video {
	background: url(../img/video-bg.jpg) center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 700px;
	overflow: hidden;
}

#video .overlay {
	background: rgba(0, 0, 0, 0.85);
	height: 100%;
}

#video .overlay .play-btn {
	width: 94px;
	height: 94px;
	background: radial-gradient(#3e4bff 50%, rgba(113, 197, 93, 0.15) 52%);
	border-radius: 50%;
	display: block;
	margin: 153px auto 0;
	position: relative;
	overflow: hidden;
}

#video .overlay .play-btn::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-40%) translateY(-50%);
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #fff;
	z-index: 100;
	transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#video .overlay .play-btn:before {
	content: "";
	position: absolute;
	width: 120px;
	height: 120px;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	-webkit-animation: pulsate1 2s;
	animation: pulsate1 2s;
	-webkit-animation-direction: forwards;
	animation-direction: forwards;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: steps;
	animation-timing-function: steps;
	opacity: 1;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.5);
	top: -15%;
	left: -15%;
	background: rgba(198, 16, 0, 0);
}

#video .overlay .play-btn:hover::after {
	border-left: 15px solid #3e4bff;
	-webkit-transform: scale(20);
	transform: scale(20);
}

#video .overlay .play-btn:hover::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-40%) translateY(-50%);
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border: none;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #fff;
	z-index: 200;
	-webkit-animation: none;
	animation: none;
	border-radius: 0;
}

@-webkit-keyframes pulsate1 {
	0% {
		-webkit-transform: scale(0.6, 0.6);
		transform: scale(0.6, 0.6);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
		opacity: 0;
	}
}

@keyframes pulsate1 {
	0% {
		-webkit-transform: scale(0.6, 0.6);
		transform: scale(0.6, 0.6);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
		opacity: 0;
	}
}

@-webkit-keyframes pulsate2 {
	0% {
		-webkit-transform: scale(0.1, 0.1);
		transform: scale(0.1, 0.1);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
		opacity: 0;
	}
}

/* Team Section
--------------------------------*/
#team .team-block {
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
	height: 254px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

@media (max-width: 991px) {
	#team .team-block {
		margin-bottom: 30px;
	}
}

#team .team-block img {
	width: 100%;
}

#team .team-block .team-content {
	background: #fff none repeat scroll 0 0;
	bottom: 0;
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.19);
	bottom: -147px;
	padding: 20px 0;
	position: absolute;
	width: 100%;
	transition: all 0.5s ease-in-out 0s;
}

#team .team-block .team-content ul {
	display: block;
	width: 100%;
}

#team .team-block .team-content ul li {
	display: inline-block;
}

#team .team-block .team-content ul li a {
	color: #626262;
}

#team .team-block .team-content ul li a .fa {
	float: left;
	padding-left: 10px;
	padding-right: 10px;
	transition: 0.3s;
}

#team .team-block .team-content ul li a .fa:hover {
	color: #3e4bff;
}

#team .team-block .team-content ul > span {
	display: inline-block;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 0.5px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

#team .team-block:hover .team-content {
	bottom: 0px;
	transition: all 0.5s ease-in-out 0s;
}

/* Testimonials Section
--------------------------------*/
#testimonials .testimonials-content {
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
	padding: 49px 20px;
}

#testimonials .testimonials-content::before {
	color: #3e4bff;
	content: "";
	display: inline-block;
	font: 70px/1 FontAwesome;
	position: absolute;
	right: 43px;
	text-align: left;
	top: -29px;
}

#testimonials .top-top > h2 {
	font-family: "Roboto" sans-serif;
	font-size: 45px;
	font-weight: 100;
	letter-spacing: 2px;
	margin-bottom: 20px;
	text-transform: capitalize;
}

#testimonials .top-top > h4 {
	font: 700 12px Lato, sans-serif;
}

#testimonials .top-top span {
	font-size: 12px;
	font-weight: 300;
	margin-left: 26px;
}

#testimonials .btm-btm ul li {
	float: left;
	margin-left: 13px;
	border-radius: 50%;
	margin-right: 13px;
	background: #ddd none repeat scroll 0 0;
	border-radius: 50%;
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	display: block;
	height: 10px;
	width: 10px;
}

#testimonials .btm-btm .active {
	background: #3e4bff;
}

.carousel-indicators {
	position: relative;
	bottom: 0;
	left: 0;
	bottom: 0 !important;
	z-index: 15;
	width: auto;
	padding-left: 0;
	margin: 30px auto 0 auto;
	margin-right: auto;
	text-align: center;
	list-style: none;
	margin-bottom: 0;
	display: inline-block;
}

.carousel-indicators li {
	margin: 0;
}

/* Pricing Table Section
--------------------------------*/
#pricing .block-pricing {
	background: #fff;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 4px 0 rgba(0, 0, 0, 0.19);
	display: inline-block;
	position: relative;
	width: 100%;
}

@media (max-width: 991px) {
	#pricing .block-pricing {
		margin-bottom: 30px;
	}
}

#pricing .block-pricing .table {
	margin-bottom: 0;
	padding: 30px 15px;
	max-width: 100%;
	width: 100%;
}

#pricing .block-pricing .table h4 {
	padding-bottom: 30px;
}

#pricing .block-pricing h2 {
	margin-bottom: 30px;
}

#pricing .block-pricing ul {
	list-style: outside none none;
	margin: 10px auto;
	max-width: 240px;
	padding: 0;
}

#pricing .block-pricing ul li {
	border-bottom: 1px solid rgba(153, 153, 153, 0.3);
	padding: 12px 0;
	text-align: center;
}

#pricing .block-pricing ul li b {
	color: #3c4857;
}

#pricing .block-pricing .table .table_btn a {
	background: #3e4bff;
	color: #fff;
	margin: 0;
	display: inline-block;
}

#pricing .block-pricing .table .table_btn a:hover {
	background: #55b03f;
}

#pricing .block-pricing .table .table_btn a .fa {
	font-size: 13px;
	margin-right: 5px;
}

/* Blog Section
--------------------------------*/
@media (max-width: 991px) {
	#blog .block-blog {
		margin-bottom: 30px;
	}
}

#blog .block-blog img {
	width: 100%;
}

#blog .block-blog .content-blog {
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 4px 0 rgba(0, 0, 0, 0.19);
	display: inline-block;
	min-height: 125px;
	padding: 20px 10px;
	width: 100%;
}

#blog .block-blog .content-blog h4 {
	line-height: 24px;
	margin-bottom: 20px;
	text-transform: capitalize;
	font-weight: normal;
	letter-spacing: 0;
	font-size: 16px;
}

#blog .block-blog .content-blog h4 a {
	color: #555;
	text-decoration: none;
	transition: 0.3s;
}

#blog .block-blog .content-blog h4 a:hover {
	color: #3e4bff;
}

#blog .block-blog .content-blog > span {
	float: left;
	font-size: 12px;
}

#blog .block-blog .content-blog a.readmore {
	color: #505050;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
	transition: 0.3s;
	letter-spacing: 0;
	text-transform: capitalize;
}

#blog .block-blog .content-blog a.readmore:hover {
	color: #3e4bff;
}

/* Newsletter Section
--------------------------------*/
#newsletter {
	background: transparent url(../img/newsletter-bg.jpg) no-repeat center top
		fixed;
	background-size: cover;
}

#newsletter .overlay {
	background: linear-gradient(
		rgba(255, 255, 255, 0.9) 0%,
		rgba(255, 255, 255, 0.2) 95%
	);
	height: 100%;
	width: 100%;
}

#newsletter .form-control {
	background-color: transparent;
	border: 1px solid #dddddd;
	border-radius: 0;
	color: #888;
	font-size: 11px;
	font-weight: 600;
	height: 50px;
	text-align: center;
	width: 70%;
	background: #fff;
}

@media (max-width: 575px) {
	#newsletter .form-control {
		margin-bottom: 30px;
		width: 100%;
	}
}

#newsletter .form-control:focus {
	border-color: #3e4bff;
	box-shadow: none;
	outline: 0 none;
}

#newsletter .btn {
	background: #3e4bff;
	border: 0;
	border-radius: 0;
	height: 50px;
	width: 30%;
	transition: 0.3s;
}

@media (max-width: 575px) {
	#newsletter .btn {
		width: 100%;
	}
}

#newsletter .btn:hover {
	background: #55b03f;
}

#newsletter .btn .fa {
	padding-right: 10px;
}

#newsletter ul {
	display: inline-block;
	margin-top: 40px;
	margin-bottom: 0;
}

#newsletter ul li {
	background: #3e4bff;
	border-radius: 50px;
	float: left;
	height: 35px;
	line-height: 35px;
	margin-left: 10px;
	margin-right: 10px;
	width: 35px;
	transition: 0.3s;
}

#newsletter ul li:hover {
	background: #55b03f;
}

#newsletter ul li .fa {
	color: #fff;
}

/* Contact Section
--------------------------------*/
#contact {
	background: #fff;
}

#contact .info {
	color: #222;
}

#contact .info i {
	font-size: 32px;
	color: #3e4bff;
	float: left;
}

#contact .info p {
	padding: 0 0 10px 50px;
	margin-bottom: 20px;
	line-height: 22px;
	font-size: 14px;
}

#contact .info .email p {
	padding-top: 5px;
}

#contact .social-links {
	padding-bottom: 20px;
}

#contact .social-links a {
	font-size: 18px;
	display: inline-block;
	background: #3e4bff;
	color: #fff;
	line-height: 1;
	padding: 6px 0 8px 0;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

#contact .social-links a:hover {
	background: #55b03f;
	color: #fff;
}

#contact .form #sendmessage {
	color: #3e4bff;
	border: 1px solid #3e4bff;
	display: none;
	text-align: center;
	padding: 15px;
	font-weight: 600;
	margin-bottom: 15px;
}

#contact .form #errormessage {
	color: red;
	display: none;
	border: 1px solid red;
	text-align: center;
	padding: 15px;
	font-weight: 600;
	margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
	display: block;
}

#contact .form .validation {
	color: red;
	display: none;
	margin: 0 0 20px;
	font-weight: 400;
	font-size: 13px;
}

#contact .form input,
#contact .form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
	padding: 12px 10px;
	line-height: 1;
}

#contact .form button[type="submit"] {
	background: #3e4bff;
	border: 0;
	padding: 10px 24px;
	color: #fff;
	transition: 0.4s;
}

#contact .form button[type="submit"]:hover {
	background: #92d283;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
	background: #2a2c30;
	padding-top: 50px;
}

.footer .footer-logo .navbar-brand {
	color: #fff;
	display: inline-block;
	float: none;
	font-family: "Philosopher", sans-serif;
	font-size: 24px;
	font-weight: 500;
	height: 100%;
	letter-spacing: 0.2em;
	padding-left: 0;
	padding-top: 0;
}

.footer .footer-logo p {
	color: #fff;
	font-size: 12px;
	letter-spacing: 1px;
}

.footer .list-menu > h4 {
	color: #fff;
	padding-bottom: 20px;
}

.footer .list-menu ul li a {
	color: #fff;
	font-size: 12px;
	padding-left: 5px;
	text-decoration: none;
	letter-spacing: 0;
}

.footer .copyrights {
	background: #fff;
	margin-top: 50px;
	text-align: center;
	padding: 25px;
}

.footer .copyrights p,
.footer .copyrights .credits {
	margin: 0;
	padding: 0;
	font-family: "Open Sans", sans-serif;
	font-weight: normal;
	font-size: 14px;
	letter-spacing: 0;
}

.footer .copyrights p a,
.footer .copyrights .credits a {
	letter-spacing: 0;
	color: #3e4bff;
}

/* TIP-TOUR Footer */
#footer {
	background: #2a2c30;
	padding: 40px 0;
}

#footer .footer__social {
	margin-bottom: 16px;
}

#footer .footer__instagram-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: #ffffff;
	text-decoration: none;
	transition: color 0.3s ease;
}

#footer .footer__instagram-link:hover {
	color: #3e4bff;
}

#footer .footer__copyright {
	color: #ffffff;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 0.5px;
	margin-bottom: 16px;
}

#footer .footer__legal-links {
	padding: 0;
	margin: 0;
	gap: 8px;
}

#footer .footer__legal-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 10px 16px;
	color: #ffffff;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.5px;
	text-decoration: none;
	transition: color 0.3s ease;
}

#footer .footer__legal-link:hover {
	color: #3e4bff;
}

/*--------------------------------------------------------------
# Description Section
--------------------------------------------------------------*/
#description {
	padding-top: 24px;
	padding-bottom: 24px;
}

#description .description-block {
	background-color: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	padding: 32px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

#description .description-intro {
	font-size: 18px;
	font-weight: 500;
	color: #333;
	margin-bottom: 20px;
	letter-spacing: 0.5px;
	line-height: 1.6;
}

#description .description-languages {
	list-style: none;
	padding: 0;
	margin: 0 0 24px 0;
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}

#description .description-languages li {
	font-size: 16px;
	font-weight: 400;
	color: #333;
	letter-spacing: 0.5px;
	line-height: 1.8;
	text-transform: none;
}

#description .btn-cta {
	display: inline-block;
	padding: 14px 40px;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	background-color: #3e4bff;
	border: 2px solid #3e4bff;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
}

#description .btn-cta:hover {
	background-color: #fff;
	color: #3e4bff;
}

@media (max-width: 768px) {
	#description .description-block {
		padding: 24px 16px;
	}

	#description .description-languages {
		flex-direction: column;
		gap: 8px;
		align-items: center;
	}

	#description .description-intro {
		font-size: 16px;
	}
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery-section {
	background-color: #f8f9fa;
}

.gallery-section h2 {
	font-size: 32px;
	font-weight: 600;
	color: #1a1a1a;
}

.gallery-section .carousel {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.gallery-section .carousel-item {
	transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

.gallery-section .gallery-img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: 8px;
	transition: transform 0.3s ease;
}

.gallery-section .gallery-img:hover {
	transform: scale(1.03);
}

.gallery-section .carousel-control-prev,
.gallery-section .carousel-control-next {
	width: 5%;
	opacity: 0.8;
}

.gallery-section .carousel-control-prev:hover,
.gallery-section .carousel-control-next:hover {
	opacity: 1;
}

.gallery-section .carousel-control-prev-icon,
.gallery-section .carousel-control-next-icon {
	background-color: rgba(0, 0, 0, 0.6);
	border-radius: 50%;
	padding: 20px;
	background-size: 50%;
}

.gallery-section .img-error-placeholder {
	width: 100%;
	height: 300px;
	background-color: #e9ecef;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	color: #6c757d;
	font-size: 14px;
}

@media (max-width: 767px) {
	.gallery-section .gallery-img {
		height: 240px;
	}

	.gallery-section .row .col-md-4 {
		margin-bottom: 12px;
	}

	.gallery-section .img-error-placeholder {
		height: 240px;
	}
}

/* Gallery Thumbnails */
.gallery-thumbnails {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

.gallery-thumb {
	width: 80px;
	height: 60px;
	border: 3px solid transparent;
	border-radius: 6px;
	overflow: hidden;
	cursor: pointer;
	padding: 0;
	background: none;
	opacity: 0.6;
	transition: opacity 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.gallery-thumb:hover {
	opacity: 0.9;
	transform: scale(1.05);
}

.gallery-thumb.active {
	border-color: #3e4bff;
	opacity: 1;
}

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

@media (max-width: 576px) {
	.gallery-thumb {
		width: 56px;
		height: 42px;
	}
}

/*--------------------------------------------------------------
# Suggestions Section
--------------------------------------------------------------*/
.suggestions-section {
	background-color: #fff;
}

.suggestions-section__heading {
	font-size: 32px;
	font-weight: 600;
	color: #1a1a1a;
}

.product-card .card {
	border: 1px solid #e9ecef;
	border-radius: 8px;
	overflow: hidden;
	transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.product-card .card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.product-card .card-img-top {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.product-card .card-title {
	font-size: 15px;
	font-weight: 600;
	color: #1a1a1a;
	letter-spacing: 0.5px;
	text-transform: none;
	line-height: 1.4;
	margin-bottom: 12px;
}

.product-card .card-price {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.product-card__discount-badge {
	font-size: 12px;
	font-weight: 600;
	padding: 4px 8px;
	border-radius: 4px;
}

.product-card__original-price {
	font-size: 14px;
}

.product-card__discounted-price {
	font-size: 16px;
}

.product-card__price {
	font-size: 16px;
	color: #1a1a1a;
}

.suggestions-section__browse-link {
	border-radius: 50px;
	padding: 12px 32px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}

/*--------------------------------------------------------------
# Map/CTA Section
--------------------------------------------------------------*/
.map-cta-section {
	background-color: #fff;
}

.map-cta-section h2 {
	font-size: 28px;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 24px;
}

.map-cta-section .btn-cta {
	display: inline-block;
	padding: 14px 40px;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	background-color: #3e4bff;
	border: 2px solid #3e4bff;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.map-cta-section .btn-cta:hover {
	background-color: #fff;
	color: #3e4bff;
}

.map-cta-section .img-fluid {
	width: 100%;
	height: auto;
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Cookie Consent Banner
--------------------------------------------------------------*/
#cookie-banner {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.92);
	color: #fff;
	z-index: 9999;
	padding: 20px 24px;
	box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.3);
}

#cookie-banner .cookie-banner__content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

#cookie-banner .cookie-banner__notice {
	flex: 1 1 400px;
	font-size: 14px;
	line-height: 1.6;
	color: #f0f0f0;
	margin-bottom: 0;
}

#cookie-banner .cookie-banner__link {
	color: #a0b4ff;
	text-decoration: underline;
	letter-spacing: 0;
}

#cookie-banner .cookie-banner__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

#cookie-banner .cookie-banner__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 600;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	text-transform: none;
	letter-spacing: 0.5px;
	transition: background-color 0.3s ease, color 0.3s ease;
}

#cookie-banner .cookie-banner__btn--accept {
	background-color: #3e4bff;
	color: #fff;
}

#cookie-banner .cookie-banner__btn--accept:hover {
	background-color: #2d3acc;
}

#cookie-banner .cookie-banner__btn--settings {
	background-color: transparent;
	color: #fff;
	border: 1px solid #fff;
}

#cookie-banner .cookie-banner__btn--settings:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

#cookie-banner .cookie-banner__btn--confirm {
	background-color: #3e4bff;
	color: #fff;
	margin-top: 16px;
}

#cookie-banner .cookie-banner__btn--confirm:hover {
	background-color: #2d3acc;
}

/* Cookie Configuration Panel */
#cookie-config-panel {
	display: none;
	background: #1a1a1a;
	border-top: 1px solid #333;
	padding: 24px;
	margin-top: 16px;
	border-radius: 8px;
}

#cookie-config-panel .cookie-config-panel__title {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 16px;
}

#cookie-config-panel .cookie-config-panel__categories {
	margin-bottom: 8px;
}

#cookie-config-panel .cookie-config-panel__category {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid #333;
	cursor: pointer;
}

#cookie-config-panel .cookie-config-panel__category:last-child {
	border-bottom: none;
}

#cookie-config-panel .cookie-config-panel__category input[type="checkbox"] {
	width: 20px;
	height: 20px;
	min-width: 20px;
	cursor: pointer;
}

#cookie-config-panel .cookie-config-panel__label {
	font-size: 14px;
	font-weight: 600;
	color: #f0f0f0;
	display: block;
}

#cookie-config-panel .cookie-config-panel__description {
	font-size: 12px;
	font-weight: 300;
	color: #aaa;
	display: block;
}

/*--------------------------------------------------------------
# Gallery Lightbox Modal
--------------------------------------------------------------*/
.gallery-section .gallery-img {
	cursor: pointer;
}

#galleryModal .modal-content {
	background: transparent;
	border: none;
}

#galleryModal .modal-header {
	border: none;
	padding: 0;
}

#galleryModal .modal-body {
	text-align: center;
	padding: 0;
}

#galleryModal .modal-body img {
	max-height: 85vh;
	width: auto;
	height: auto;
	max-width: 100%;
	object-fit: contain;
}

/*--------------------------------------------------------------
# Signup Page
--------------------------------------------------------------*/
.signup-section {
	min-height: calc(100vh - 160px);
	padding-top: 100px;
}

.signup-container {
	padding: 2rem;
}

.signup-container h2 {
	font-size: 1.75rem;
	font-weight: 700;
}

.signup-section .btn-signup {
	background-color: #3e4bff;
	border-color: #3e4bff;
	color: #fff;
	font-weight: 600;
	transition: background-color 0.2s, opacity 0.2s;
}

.signup-section .btn-signup:hover,
.signup-section .btn-signup:focus {
	background-color: #2e3be6;
	border-color: #2e3be6;
	color: #fff;
}

.signup-section .btn-signup:disabled {
	background-color: #3e4bff;
	border-color: #3e4bff;
	opacity: 0.65;
	cursor: not-allowed;
}

.signup-section .form-control:focus {
	border-color: #3e4bff;
	box-shadow: 0 0 0 0.2rem rgba(62, 75, 255, 0.25);
}

.signup-section a {
	color: #3e4bff;
}

.signup-section a:hover {
	color: #2e3be6;
}

.signup-error {
	display: none;
	color: #dc3545;
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
	border-radius: 0.25rem;
	padding: 0.75rem 1rem;
	margin-bottom: 1rem;
	font-size: 0.875rem;
}

.signup-error.visible {
	display: block;
}

.signup-success {
	display: none;
	color: #155724;
	background-color: #d4edda;
	border: 1px solid #c3e6cb;
	border-radius: 0.25rem;
	padding: 0.75rem 1rem;
	margin-bottom: 1rem;
	font-size: 0.875rem;
}

.signup-success.visible {
	display: block;
}

.signup-spinner {
	display: none;
	width: 1rem;
	height: 1rem;
	border: 2px solid #fff;
	border-top-color: transparent;
	border-radius: 50%;
	animation: spin 0.6s linear infinite;
	margin-right: 0.5rem;
}

.signup-spinner.visible {
	display: inline-block;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

.signup-section .form-group {
	margin-bottom: 1rem;
}

.signup-section .form-group label {
	font-weight: 500;
	margin-bottom: 0.375rem;
	font-size: 0.875rem;
	display: block;
}

.signup-links {
	text-align: center;
	margin-top: 1rem;
	font-size: 0.875rem;
}

.signup-links a {
	text-decoration: none;
}

.signup-links a:hover {
	text-decoration: underline;
}

/* Password toggle */
.password-wrapper {
	position: relative;
}

.password-wrapper .form-control {
	padding-right: 2.75rem;
}

.password-toggle {
	position: absolute;
	right: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	color: #6c757d;
	line-height: 1;
}

.password-toggle:hover {
	color: #3e4bff;
}

.password-toggle svg {
	width: 1.25rem;
	height: 1.25rem;
}

.field-error {
	color: #dc3545;
	font-size: 0.8rem;
	margin-top: 0.25rem;
	min-height: 1.2em;
}

@media (max-width: 768px) {
	.signup-section {
		padding-top: 80px;
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.signup-container {
		max-width: 100% !important;
		padding: 1.5rem 1rem;
	}

	.signup-section .form-control {
		width: 100%;
	}
}

/*--------------------------------------------------------------
# Login Page
--------------------------------------------------------------*/
.login-section {
	min-height: calc(100vh - 160px);
	padding-top: 100px;
}

.login-container {
	padding: 2rem;
}

.login-container h2 {
	font-size: 1.75rem;
	font-weight: 700;
}

.login-section .btn-login {
	background-color: #3e4bff;
	border-color: #3e4bff;
	color: #fff;
	font-weight: 600;
	transition: background-color 0.2s, opacity 0.2s;
}

.login-section .btn-login:hover,
.login-section .btn-login:focus {
	background-color: #2e3be6;
	border-color: #2e3be6;
	color: #fff;
}

.login-section .btn-login:disabled {
	background-color: #3e4bff;
	border-color: #3e4bff;
	opacity: 0.65;
	cursor: not-allowed;
}

.login-section .form-control:focus {
	border-color: #3e4bff;
	box-shadow: 0 0 0 0.2rem rgba(62, 75, 255, 0.25);
}

.login-section a {
	color: #3e4bff;
}

.login-section a:hover {
	color: #2e3be6;
}

.login-error {
	display: none;
	color: #dc3545;
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
	border-radius: 0.25rem;
	padding: 0.75rem 1rem;
	margin-bottom: 1rem;
	font-size: 0.875rem;
}

.login-error.visible {
	display: block;
}

.login-success {
	display: none;
	color: #155724;
	background-color: #d4edda;
	border: 1px solid #c3e6cb;
	border-radius: 0.25rem;
	padding: 0.75rem 1rem;
	margin-bottom: 1rem;
	font-size: 0.875rem;
}

.login-success.visible {
	display: block;
}

.login-spinner {
	display: none;
	width: 1rem;
	height: 1rem;
	border: 2px solid #fff;
	border-top-color: transparent;
	border-radius: 50%;
	animation: spin 0.6s linear infinite;
	margin-right: 0.5rem;
}

.login-spinner.visible {
	display: inline-block;
}

.login-section .form-group {
	margin-bottom: 1rem;
}

.login-section .form-group label {
	font-weight: 500;
	margin-bottom: 0.375rem;
	font-size: 0.875rem;
	display: block;
}

.login-links {
	text-align: center;
	margin-top: 1rem;
	font-size: 0.875rem;
}

.login-links a {
	text-decoration: none;
}

.login-links a:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.login-section {
		padding-top: 80px;
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.login-container {
		max-width: 100% !important;
		padding: 1.5rem 1rem;
	}

	.login-section .form-control {
		width: 100%;
	}
}

/*--------------------------------------------------------------
# Responsive Breakpoints
--------------------------------------------------------------*/

/* Large screens (≥1024px) - Desktop */
@media (min-width: 1024px) {
	.header__toggle {
		display: none;
	}
}

/* Medium screens (768px - 1023px) - Tablet */
@media (max-width: 1023px) {
	.map-cta-section h2 {
		font-size: 24px;
	}
}

/* Small screens (576px - 767px) */
@media (max-width: 767px) {
	.map-cta-section .col-md-6 {
		text-align: center;
	}

	.map-cta-section h2 {
		font-size: 22px;
		margin-top: 16px;
	}

	.product-card .card-img-top {
		height: 180px;
	}
}

/* Extra small screens (<576px) - Mobile */
@media (max-width: 575px) {
	#cookie-banner .cookie-banner__content {
		flex-direction: column;
		align-items: stretch;
	}

	#cookie-banner .cookie-banner__actions {
		flex-direction: column;
	}

	#cookie-banner .cookie-banner__btn {
		width: 100%;
	}

	.suggestions-section__browse-link {
		width: 100%;
		display: block;
	}

	.map-cta-section .btn-cta {
		width: 100%;
		display: block;
		text-align: center;
	}

	#hero .btn-cta {
		width: 100%;
		display: block;
		text-align: center;
	}
}

/* Minimum viewport (320px) */
@media (max-width: 320px) {
	body {
		font-size: 14px;
	}

	#hero h1 {
		font-size: 20px;
	}

	#hero h2 {
		font-size: 14px;
	}

	.header__nav {
		padding: 0 12px;
	}

	.header__brand h1 {
		font-size: 18px;
	}

	#cookie-banner {
		padding: 16px 12px;
	}

	#cookie-config-panel {
		padding: 16px 12px;
	}
}

/* Touch target sizing for mobile (<1024px) */
@media (max-width: 1023px) {
	.btn-cta,
	.btn,
	button,
	a.footer__legal-link,
	a.footer__instagram-link,
	.header__cart,
	.header__toggle,
	.suggestions-section__browse-link,
	#cookie-banner .cookie-banner__btn,
	#cookie-config-panel .cookie-config__confirm {
		min-width: 44px;
		min-height: 44px;
	}
}
