
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.cookie-banner {
	position: fixed;
	bottom: 0;
	width: 100%;
	background: #ffffff;
	border-top: 1px solid #e0e0e0;
	color: #111;
	padding: 16px 24px;
	font-family: 'General Sans', sans-serif;
	display: none;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	z-index: 1000;
	box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
}

.cookie-banner p {
	margin: 0;
	font-size: 16px;
	flex: 1 1 300px;
}

.cookie-banner a {
	color: #9AE9C9;
	text-decoration: underline;
}

.cookie-btn {
	background-color: #9AE9C9;
	color: #111;
	border: none;
	padding: 10px 20px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	margin-top: 10px;
	flex-shrink: 0;
}

.cookie-btn:hover {
  	opacity: 0.9;
}



.default-page {
	padding: 80px 20px;
	max-width: 800px;
	margin: 0 auto;
}

body {
	font-family: 'General Sans', sans-serif;
	overflow-x: hidden;
}

.hero-section {
	width: 100%;
	min-height: 100vh;
	padding: 0 5vw;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	color: white;
	background-image: url('/wp-content/themes/myskin/static/img/home-photo1-background.svg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 10px;
    flex-wrap: wrap;
    margin-top: 1rem;
    z-index: 2;
}

.logo {
	background-image: url('/wp-content/themes/myskin/static/img/logo-light-desktop.svg');
	background-size: cover;
	background-repeat: no-repeat;
    height: 43px;
	box-sizing: border-box;
	width: 200px;
	min-width: 200px;
  	background-position: left center;
}

.logo-dark {
	background-image: url('/wp-content/themes/myskin/static/img/logo-dark-desktop.svg');
	background-size: cover;
	background-repeat: no-repeat;
    height: 43px;
	box-sizing: border-box;
	width: 200px;
	min-width: 200px;
}

.logo-combined {
	display: flex;
	align-items: center;
	gap: 10px;
}

.logo-icon {
	width: 43px;
	height: 43px;
}

.logo-text {
	font-family: 'General Sans', sans-serif;
	font-size: 32px;
	font-weight: 400;
	color: #1C1C1C;
	line-height: 1;
	display: flex;
}

.main-nav {
    display: flex;
    gap: 4rem;
    background: rgba(247, 247, 245, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(8px);
    padding: 12px 40px;
  
}

.main-nav a {
    color: white;
    font-size: 1.25rem;
    text-decoration: none;
}

.nav-link {
    font-weight: 400;
    font-size: 20px;
    font-family: 'General Sans', sans-serif;
    color: white;
    position: relative;
    display: inline-block;
    text-align: center;
    transform-origin: center center;
    transition: all 0.2s ease;
}

.nav-link::before {
    content: attr(data-text);
    font-weight: 600;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    display: block;
    pointer-events: none;
    user-select: none;
}

.nav-link:hover {
    font-weight: 600;
    transform: scale(1.03);
}

.sign-in {
    border: 2px solid white;
    border-radius: 50px;
    padding: 10px 30px;
    color: white;
    font-size: 1.25rem;
    text-decoration: none;
}

.sign-in:hover {
    color: black;
    background-color: white;
    transition: all 0.2s ease;
}

.hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    padding: 120px 0;
    margin-bottom: 45px;
    z-index: 2;
}

.hero-content h1 {
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 600;
	line-height: 1.2;
	text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-content .highlight {
  	color: #9AE9C9;
}

.hero-content p {
	font-size: clamp(1rem, 2vw, 1.75rem);
	font-weight: 500;
	max-width: 90%;
}

.cta-button {
    margin-top: 20px;
    display: inline-block;
    padding: 24px 40px;
    background: white;
    color: black;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.6px;
    border-radius: 50px;
    text-decoration: none;
    z-index: 2;
    gap: 10px;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.301)
}



.mission-section {
	padding: 80px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-image: url('/wp-content/themes/myskin/static/img/home-photo2-background.jpg');
	background-color: lightgray;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

.mission-section-heading {
	text-align: center;
	color: #5BB49A;
	font-size: 28px;
	font-family: 'General Sans', sans-serif;
	font-weight: 500;
}

.mission-content {
	margin-top: 40px;
	padding: 40px 0;
	background: rgba(247, 247, 245, 0.3);
	backdrop-filter: blur(2.5px);
	display: flex;
	justify-content: center;
	align-items: center;
}

.mission-text {
	max-width: 1058px;
	text-align: center;
	font-size: 48px;
	line-height: 62px;
	font-family: 'General Sans', sans-serif;
	font-weight: 500;
	color: #2D2D2D;
}

.highlight {
  	color: #5BB49A;
}



.three-step-section {
	padding: 80px;
	background: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	overflow: hidden;
}

.three-section-heading {
	color: #5BB49A;
	font-size: 28px;
	font-family: 'General Sans', sans-serif;
	font-weight: 500;
	text-align: center;
}

.steps-container {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	width: 413px;
}

.step img {
	width: 413px;
	height: 400px;
	object-fit: cover;
}

.home-photo3-pic1 {
	width: 413px;
	height: 400px;
	background-image: url('/wp-content/themes/myskin/static/img/home-photo3-pic1.jpg');
	background-size: cover;
	background-position: 50% 40%;
	background-repeat: no-repeat;
	display: block;
	flex-shrink: 0;
}

.home-photo3-pic2 {
	width: 413px;
	height: 400px;
	background-image: url('/wp-content/themes/myskin/static/img/home-photo3-pic2.jpg');
	background-size: cover;
	background-position: 20% 50%;
	background-repeat: no-repeat;
	display: block;
	flex-shrink: 0;
}


.home-photo3-pic3 {
	width: 413px;
	height: 400px;
	background-image: url('/wp-content/themes/myskin/static/img/home-photo3-pic3.jpg');
	background-size: cover;
	background-position: 50% 40%;
	background-repeat: no-repeat;
	display: block;
	flex-shrink: 0;
}


.step-content {
	display: flex;
	flex-direction: column;
	gap: 12px;
	text-align: center;
}

.step-title {
	color: #5BB49A;
	font-size: 20px;
	font-family: 'General Sans', sans-serif;
	font-weight: 500;
	margin: 0;
}

.step-heading {
	color: #2D2D2D;
	font-size: 24px;
	font-family: 'General Sans', sans-serif;
	font-weight: 500;
	margin: 0;
}

.step-description {
	color: #797572;
	font-size: 20px;
	font-family: 'General Sans', sans-serif;
	font-weight: 400;
	margin: 0;
}



.usp-section {
	position: relative;
	padding: 80px 20px;
	background-image: url('/wp-content/themes/myskin/static/img/home-photo4-background.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #fff;
	z-index: 0;
}

.usp-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.5);
	z-index: 0;
	pointer-events: none;
}

.usp-section > * {
	position: relative;
	z-index: 1;
}

.usp-section-title {
	text-align: center;
	color: #5BB49A;
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 60px;
	z-index: 1;
}

.usp-block {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 80px;
	padding: 40px 0;
	flex-wrap: wrap;
	z-index: 1;
}

.usp-text {
	flex: 1 1 0;
	padding: 40px 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	max-width: 560px;
	align-items: center;
}

.usp-header {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}

.usp-header .number {
	text-align: center;
	color: #5BB49A;
	font-size: 24px;
	font-weight: 500;
}

.usp-header .title {
	font-size: 48px;
	font-weight: 500;
	line-height: 62px;
	color: #2D2D2D;
}

.usp-description {
	width: 100%;
	color: #797572;
	font-size: 24px;
	font-weight: 500;
	margin-top: 12px;
}

.home-photo4-pic1 {
	width: 630px;
	height: 630px;
	background-image: url('/wp-content/themes/myskin/static/img/home-photo4-pic1.jpg');
	background-size: cover;
	background-position: 50% 30%;
	background-repeat: no-repeat;
	display: block;
	flex-shrink: 0;
}

.home-photo4-pic2 {
	width: 630px;
	height: 630px;
	background-image: url('/wp-content/themes/myskin/static/img/home-photo4-pic2.jpg');
	background-size: cover;
	background-position: 50% 30%;
	background-repeat: no-repeat;
	display: block;
	flex-shrink: 0;
}

.home-photo4-pic3 {
	width: 630px;
	height: 630px;
	background-image: url('/wp-content/themes/myskin/static/img/home-photo4-pic3.jpg');
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	flex-shrink: 0;
}



.cta-section {
	position: relative;
	text-align: center;
	padding: 100px 20px;
	background-image: url('/wp-content/themes/myskin/static/img/home-photo5-background.svg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	height: 100vh;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.cta-heading {
	max-width: 986px;
	margin: 0 auto 40px auto;
	color: #ffffff;
	font-size: 72px;
	font-weight: 600;
	line-height: 80px;
	font-family: 'General Sans', sans-serif;
	text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
	z-index: 2;
}

.cta-highlight {
  	color: #9AE9C9;
}


























.assessment-intro {
	background-image: url('/wp-content/themes/myskin/static/img/introduction.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #2D2D2D;
	min-height: 100vh;
	color: white;
	font-family: 'General Sans', sans-serif;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 40px 60px;
	position: relative;
}

.assessment-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.exit-button {
	color: white;
	text-decoration: none;
	position: relative;
	font-size: 24px;
}

.exit-button-dark {
	color: #797572;
	text-decoration: none;
	position: relative;
	font-size: 24px;
}

.assessment-body {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex: 1;
}

.text-content {
  	max-width: 760px;
}

.text-content h1 {
	font-size: 54px;
	line-height: 1.3;
	margin-bottom: 20px;
	font-weight: 100;
}

.text-content .highlight {
  	color: #9AE9C9;
}

.text-content p {
	font-size: 26px;
	line-height: 1.5;
	margin-bottom: 30px;
}































.question-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 80px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
}

.questionnaire {
	display: flex;
	flex-direction: column;
	height: 100vh;
	background: #fff;
	overflow: hidden;
}

.question {
	display: none;
	flex: 1;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	height: 100%;
	transition: opacity 0.4s ease-in-out;
}

.question.active {
	display: flex;
	opacity: 1;
}

.question-left {
	padding: 80px;
	padding-top: 40px;
	width: 50%;
	height: 100%;
	display: flex;
	flex-direction: column;
	background-image: url('/wp-content/themes/myskin/static/img/questions-background.jpg');
	background-position: 80% 80%;
	background-repeat: no-repeat;
	background-size: 150%;
}

.intro-middle {
	margin-top: 220px;
	margin-bottom: auto;
	max-width: 500px;
}

.question-progress {
	color: #5BB49A;
	font-weight: 500;
	font-size: 20px;
	margin-bottom: 20px;
}

.question-left h2 {
	font-size: 36px;
	font-weight: 500;
	margin-bottom: 20px;
}

.subtitle {
	font-size: 24px;
	color: #6f6f6f;
	font-weight: 500;
	margin-bottom: 15px;
}

.instructions {
	font-size: 20px;
	font-weight: 400;
	color: #9e9e9e;
}

.question-right {
	width: 50%;
	justify-content: flex-start;
	padding: 40px 120px 0 80px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	align-content: center;
	gap: 24px;
	align-self: stretch;
	flex-wrap: wrap;
}

.option {
	border: 1px solid #2D2D2D;
	border-radius: 9999px;
	cursor: pointer;
	background-color: white;
	display: flex;
	padding: 16px 24px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.option:hover {
  	background-color: #E5F5EF;
}

.option.selected {
	background-color: #E5F5EF;
	border: 2px solid #5BB49A;
	font-weight: 20000;
	color: #2a2a2a;
}

.text-input-group {
	max-width: 720px;
	width: 100%;
	margin-bottom: 24px;
}

.textbox-wrapper {
	width: 100%;
	border: 1px solid #e3e1df;
	padding: 5px;
	padding-left: 10px;
	background-color: white;
	box-sizing: border-box;
}

.text-option {
	width: 100%;
	height: 200px;
	border: none;
	resize: none;
	outline: none;
	font-size: 20px;
	line-height: 1.5;
	font-family: inherit;
	color: #333;
	background-color: transparent;
}

.text-option::placeholder {
  	color: #757575;
}

.char-count {
	text-align: right;
	font-size: 14px;
	color: #757575;
	margin-top: 8px;
}

.text-input-group label {
	font-size: 18px;
	margin-bottom: 8px;
	display: block;
	color: #2D2D2D;
}

.text-input {
	width: 100%;
	padding: 16px;
	font-size: 18px;
	border: 1px solid #ddd;
	background-color: white;
	outline: none;
	box-sizing: border-box;
}

.help-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease-in-out;
	z-index: 1999;
}

.help-overlay.active {
	opacity: 1;
	visibility: visible;
}

.help-link {
	margin-top: 24px;
	color: #999;
	font-size: 20px;
	cursor: pointer;
	text-align: center;
	width: 100%;
}

.help-link:hover {
  	text-decoration: underline;
}

.help-panel {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	max-width: 685px;
	height: 100%;
	background-color: white;
	box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
	transition: right 0.3s ease-in-out;
	z-index: 2000;
	overflow-y: auto;
}

.help-panel.open {
  	right: 0;
}

.help-panel-content {
  	padding: 40px 24px 30px;
  	font-family: 'General Sans', sans-serif;
}

.help-panel-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.help-panel-content li {
	padding: 0 0 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #E0E0E0;
}

.help-panel-content li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.help-panel-content strong {
	display: block;
	font-size: 20px;
	font-weight: 600;
	color: #111;
	margin-bottom: 6px;
}

.help-panel-content span {
	display: block;
	color: #666;
	font-size: 18px;
	line-height: 1.5;
}

.close-help {
	position: absolute;
	top: 24px;
	right: 24px;
	font-size: 36px !important;
	font-weight: 400;
	cursor: pointer;
	color: #333;
}

.help-navigation {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.help-navigation button {
  background: white;
  color: black;
  border: none;
  padding: 10px 24px;
  font-size: 20px;
  font-family: 'General Sans', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 80px;
  text-align: center;
}

.help-navigation button:hover {
  color: #8a8a8a;
}

.ingredient {
  margin-bottom: 24px;
}

.help-page {
  padding: 24px;
}


.concerns-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 40px;
}

.concern {
 	text-align: center;
}

.concern img {
	width: 180px;
	height: 120px;
	aspect-ratio: 3/2;
	object-fit: cover;
	display: block;
}


.concern p {
	margin-top: 8px;
	font-size: 16px;
	color: #000;
}
















.question-footer {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding-top: 0;
	padding-bottom: 24px;
	border-top: 1px solid #eaeaea;
	background: #fff;
	box-sizing: border-box;
}

.progress-bar-wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.progress-track {
	width: 100%;
	height: 8px;
	background: #E3E1DF;
	overflow: hidden;
}

.progress-fill {
	height: 8px;
	width: 0%;
	background: #5BB49A;
	transition: width 0.4s ease;
}

.progress-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-button {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	font-size: 20px;
	font-weight: 500;
	color: #2D2D2D;
	margin: 0px 80px;
	padding: 12px 24px;
	border-radius: 9999px;
	border: 1px solid #2D2D2D;
	background: white;
}

.nav-button:hover {
	background-color: black;
	color: white;
}

.nav-button-back {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	font-size: 20px;
	font-weight: 500;
	color: #2D2D2D;
	margin: 0px 80px;
	padding: 12px 24px;
	background: white;
}

.nav-button.back {
  	visibility: hidden;
}

.nav-button-back:hover {
	color: #7c7c7c;
}

.arrow-left,
.arrow-right {
	width: 18px;
	height: 15px;
	background: #2D2D2D;
}

.arrow-left {
  	transform: rotate(180deg);
}

.progress-text {
	font-size: 24px;
	color: #797572;
	font-weight: 500;
	text-align: center;
}


























.loading-page {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	font-family: 'General Sans', sans-serif;
	color: white;
}

.bg-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.bg-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
	background: radial-gradient(
		ellipse at center,
		rgba(0, 0, 0, 0) 10%,
		rgba(0, 0, 0, 0.7) 100%
	);
}

.loading-section {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	padding: 60px 40px;
	padding-top: 0px;
	text-align: center;
}

.loading-header {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: flex-start;
	align-items: left;
	padding-left: 80px;
	padding-top: 30px;
}

.loading-message {
	margin-top: 30%;
}

.loading-message h1 {
	font-size: 64px;
	color: #9AE9C9;
	margin-bottom: 20px;
	text-shadow: 0px 2px 4px rgba(0,0,0,0.3);
}

.loading-message p {
	font-size: 20px;
	max-width: 650px;
	line-height: 1.5;
	text-shadow: 0px 2px 4px rgba(0,0,0,0.3);
}


























.alt-nav {
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	margin-top: 0;
	padding-bottom: 0px;
}

.alt-nav .main-nav {
	background: rgba(255, 255, 255, 0.3);
	gap: 80px;
}

.alt-nav .nav-link,
.alt-nav .sign-in {
  	color: #2D2D2D;
}

.alt-nav .sign-in {
  	border-color: #2D2D2D;
}

.alt-nav .sign-in:hover {
  	background-color: #2D2D2D;
  	color: white;
}



.skin-profile-section {
	width: 100%;
	min-height: 110vh;
	padding: 10px 100px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-image: url('/wp-content/themes/myskin/static/img/reco-photo1.jpg');
	background-size: 130%;
	background-position: 0% 100%;
	background-repeat: no-repeat;
}

.skin-profile-layout {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	max-width: 100%;
	overflow: visible;
	margin-bottom: 50px;
}

.skin-profile-header {
	flex: 1;
	max-width: 400px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.skin-profile-header h3 {
	color: #5BB49A;
	font-size: 28px;
	font-family: "General Sans", sans-serif;
	font-weight: 500;
 	 margin-bottom: 100px;
}

.skin-profile-header h1 {
	font-size: 48px;
	font-weight: 500;
	color: #2D2D2D;
	line-height: 62px;
}

.skin-profile-header p {
	font-size: 28px;
	font-weight: 500;
	color: #797572;
}

.tags {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.tag {
	background: #E5F5EF;
	border-radius: 50px;
	padding: 12px 24px;
	font-size: 20px;
	color: #2D2D2D;
}

.profile-card {
	background: rgba(255, 255, 255, 0.7);
	padding: 40px;
	width: 600px;
	height: 100%;
	backdrop-filter: blur(8px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.profile-card h4 {
	color: #5BB49A;
	font-size: 20px;
	font-weight: 500;
}

.card-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.card-title {
	display: flex;
	align-items: center;
	font-size: 20px;
	color: #797572;
	font-weight: 400;
	margin-bottom: 6px;
	gap: 8px;
}


.svg-icon-concerns {
	width: 22px;
	height: 22px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	color: #797572;
	display: inline-block;
	margin-right: 4px;
	vertical-align: middle;
	background-image: url('/wp-content/themes/myskin/static/img/top-skin-concerns.svg');
}

.svg-icon-products {
	width: 22px;
	height: 22px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	color: #797572;
	display: inline-block;
	margin-right: 4px;
	vertical-align: middle;
	background-image: url('/wp-content/themes/myskin/static/img/current-products.svg');
}

.svg-icon-not-for-you {
	width: 22px;
	height: 22px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	color: #797572;
	display: inline-block;
	margin-right: 4px;
	vertical-align: middle;
	background-image: url('/wp-content/themes/myskin/static/img/not-for-you.svg');
}

.svg-icon-preferences {
	width: 22px;
	height: 22px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	color: #797572;
	display: inline-block;
	margin-right: 4px;
	vertical-align: middle;
	background-image: url('/wp-content/themes/myskin/static/img/routine-preferences.svg');
}

.svg-icon-environment {
	width: 22px;
	height: 22px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	color: #797572;
	display: inline-block;
	margin-right: 4px;
	vertical-align: middle;
	background-image: url('/wp-content/themes/myskin/static/img/environment.svg');
}

.svg-icon-diet {
	width: 22px;
	height: 22px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	color: #797572;
	display: inline-block;
	margin-right: 4px;
	vertical-align: middle;
	background-image: url('/wp-content/themes/myskin/static/img/diet.svg');
}

.svg-icon-sleep {
	width: 22px;
	height: 22px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	color: #797572;
	display: inline-block;
	margin-right: 4px;
	vertical-align: middle;
	background-image: url('/wp-content/themes/myskin/static/img/sleep.svg');
}

.svg-icon-stress {
	width: 22px;
	height: 22px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	color: #797572;
	display: inline-block;
	margin-right: 4px;
	vertical-align: middle;
	background-image: url('/wp-content/themes/myskin/static/img/stress.svg');
}

.svg-icon-speaker {
	width: 22px;
	height: 22px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	color: #797572;
	display: inline-block;
	margin-right: 6px;
	vertical-align: middle;
	background-image: url('/wp-content/themes/myskin/static/img/speaker.svg');
}

.card-content {
	font-size: 24px;
	color: #2D2D2D;
	font-weight: 500;
}

hr {
	border: none;
	border-top: 1px solid #E3E1DF;
}


.quotation-mark {
	color: var(--Primary-Regular, #5BB49A);
	padding: 0px;
	font-size: 72px;
	font-style: normal;
	font-weight: 600;
}

.quote-block {
	display: flex;
	flex-direction: column;
	gap: 0px;
}

.skin-history {
	color: #797572;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}


.recommendation-carousel {
	width: 800px;
	overflow: hidden;
	position: relative;
	margin-left: auto;
	justify-content: center;
}

.carousel-track {
	display: flex;
	transition: transform 0.5s ease-in-out;
	gap: 5px;
}

.carousel-card {
	flex: 0 0 80%;
	box-sizing: border-box;
	padding: 20px;
	min-height: 400px;
}



.carousel-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	margin-top: 24px;
	width: 100%;
	position: relative;
	margin-bottom: 24px;
}

.carousel-btn {
	background: white;
	border: none;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 20px;
	color: #2D2D2D;
	transition: all 0.3s ease;
}

.carousel-btn:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transform: scale(1.05);
	background-color: #f9f9f9;
}

.carousel-dots {
	display: flex;
	gap: 8px;
}

.carousel-dots .dot {
	width: 10px;
	height: 10px;
	background: #E3E1DF;
	border-radius: 50%;
}

.carousel-dots .dot.active {
	background: #2D2D2D;
}








.recommendation-results {
	padding: 60px 80px;
	background: white;
}

.recommendation-title {
	text-align: center;
	color: #5BB49A;
	font-size: 28px;
	font-family: "General Sans", sans-serif;
	font-weight: 500;
	margin-bottom: 40px;
}

.recommendation-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: center;
}

.recommendation-picture-succinic-acid {
	width: 630px;
	height: 480px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: inline-block;
	vertical-align: middle;
	background-image: url('/wp-content/themes/myskin/static/img/reco-photo2-pic1-f.jpg');
}

.recommendation-picture-succinic-acid:hover {
  	background-image: url('/wp-content/themes/myskin/static/img/reco-photo2-pic1-b.jpg');
}

.recommendation-picture-hexanol {
	width: 630px;
	height: 480px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: inline-block;
	vertical-align: middle;
	background-image: url('/wp-content/themes/myskin/static/img/reco-photo2-pic2-f.jpg');
}

.recommendation-picture-hexanol:hover {
  	background-image: url('/wp-content/themes/myskin/static/img/reco-photo2-pic2-b.jpg');
}

.recommendation-picture-N-acetylmannosamine {
	width: 630px;
	height: 480px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: inline-block;
	vertical-align: middle;
	background-image: url('/wp-content/themes/myskin/static/img/reco-photo2-pic3-f.jpg');
}

.recommendation-picture-N-acetylmannosamine:hover {
  	background-image: url('/wp-content/themes/myskin/static/img/reco-photo2-pic3-b.jpg');
}

.recommendation-picture-Alpha-bisabolol {
	width: 630px;
	height: 480px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: inline-block;
	vertical-align: middle;
	background-image: url('/wp-content/themes/myskin/static/img/reco-photo2-pic4-f.jpg');
}

.recommendation-picture-Alpha-bisabolol:hover {
  	background-image: url('/wp-content/themes/myskin/static/img/reco-photo2-pic4-b.jpg');
}

.recommendation-card {
	width: 630px;
	background: white;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	display: flex;
	flex-direction: column;
	padding: 0;
	margin: 0;
}

.recommendation-content {
	padding: 40px;
	padding-top: 0;
	margin-top: 60px;
}

.recommendation-heading .function {
	color: #5BB49A;
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 8px;
}

.recommendation-heading h3 {
	font-size: 40px;
	color: #2D2D2D;
	font-weight: 500;
	margin: 0;
}

.pronunciation {
	color: #797572;
	font-size: 16px;
	margin-top: 4px;
	margin-bottom: 80px;
}

.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 20px;
}

.tag {
	background: #E5F5EF;
	padding: 12px 24px;
	border-radius: 50px;
	font-size: 20px;
	color: #2D2D2D;
}

.description {
	font-size: 20px;
	color: #797572;
}

.read-more {
	color: #5BB49A;
	cursor: pointer;
}




.signup-cta {
	position: relative;
	background-image: url('/wp-content/themes/myskin/static/img/reco-photo3.jpg');
	background-size: cover;
	background-position: center;
	height: 810px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	padding: 40px;
	text-align: center; 
}


.overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 1;
}

.home-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.3);
	z-index: 1;
}


.signup-content {
	max-width: 986px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
	z-index: 2;
}

.signup-content h2 {
	font-size: 72px;
	font-weight: 600;
	font-family: "General Sans", sans-serif;
	line-height: 80px;
	color: white;
}

.signup-content h2 .highlight {
  	color: #9AE9C9;
}

.signup-description {
	font-size: 28px;
	font-weight: 500;
	font-family: "General Sans", sans-serif;
	color: white;
	max-width: 100%;
}

.signup-button {
	height: 64px;
	padding: 0 40px;
	background: white;
	border: none;
	border-radius: 50px;
	font-size: 20px;
	font-family: "General Sans", sans-serif;
	font-weight: 500;
	letter-spacing: 0.6px;
	color: #2D2D2D;
	cursor: pointer;
	margin-top: 20px;
	margin-bottom: 20px;
}

.signup-button:hover {
  	background: #dbdbdb;
}

.disclaimer {
	font-size: 16px;
	font-weight: 400;
	font-family: "General Sans", sans-serif;
	color: white;
}
