	@font-face {
		font-family: 'Zapf Humanist 601';
		src: url('../font/Zapf_Humanist_601_Regular.otf') format('opentype');
		font-weight: normal;
		font-style: normal;
	}

	@font-face {
		font-family: 'Suisse Int\'l';
		src: url('../font/SuisseIntl_Regular.otf') format('opentype');
		font-weight: normal;
		font-style: normal;
	}

	@font-face {
		font-family: 'Helvetica';
		src: url('../font/Helvetica.ttf') format('truetype');
		font-weight: normal;
		font-style: normal;
	}

	@keyframes slide {
		0% {
			transform: translateX(0);
		}

		33% {
			transform: translateX(-100%);
		}

		66% {
			transform: translateX(-200%);
		}

		100% {
			transform: translateX(-200%);
		}
	}

	.step-title,.hero-title-split {
		font-family: 'Zapf Humanist 601', sans-serif;
	}
	p {
		font-family: 'Suisse Int\'l', sans-serif;
		font-size:18px;
	}

	@media screen and (max-width: 767px) {
		p {
			font-size: 15px;
		}
	}

	.sidebar {
		display:none;
		z-index:2 !important;
		width:40% !important;
		min-width:300px !important;
		background-color: #FFF3CC !important;
	}

	.sidebar-content{
		font-family: 'Zapf Humanist 601', sans-serif;
		max-width: 450px;
		color: rgba(37, 37, 37, 1);
	}

	/* ===========================
	   AESOP-STYLE NAVBAR (Two-Tier)
	   =========================== */
	.navbar-aesop {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		z-index: 1100;
		padding: 1.25rem 0 0.75rem;
		transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
	}

	/* Scrolled state - solid background */
	.navbar-aesop.scrolled {
		position: fixed;
		background-color: rgba(35, 35, 35, 0.95);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
		padding: 0.6rem 0 0.4rem;
	}

	/* Top row: logo center + account right */
	.navbar-top-row {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 0.75rem;
	}

	.navbar-aesop.scrolled .navbar-top-row {
		margin-bottom: 0.4rem;
	}

	.navbar-top-left,
	.navbar-top-right {
		display: flex;
		align-items: center;
		gap: 1.75rem;
		flex: 1;
	}

	.navbar-top-right {
		justify-content: flex-end;
	}

	.navbar-top-center {
		flex: 0 0 auto;
		text-align: center;
		padding: 0 2rem;
	}

	.navbar-aesop-logo {
		width: 80px;
		height: auto;
		filter: brightness(0) invert(1);
		transition: width 0.3s ease;
	}

	.navbar-aesop.scrolled .navbar-aesop-logo {
		width: 60px;
	}

	/* Nav links */
	.navbar-aesop-link {
		font-family: 'Suisse Int\'l', sans-serif;
		font-size: 14px;
		font-weight: 400;
		color: #ffffff;
		text-decoration: none;
		letter-spacing: 0.02em;
		transition: opacity 0.2s ease;
		background: none;
		border: none;
		cursor: pointer;
		padding: 0;
		white-space: nowrap;
	}

	.navbar-aesop-link:hover {
		opacity: 0.7;
		color: #ffffff;
		text-decoration: none;
	}

	/* Bottom row: all nav links centered */
	.navbar-bottom-row {
		display: flex;
		align-items: center;
		justify-content: center;
		padding-top: 0.75rem;
		border-top: 1px solid rgba(255, 255, 255, 0.15);
	}

	.navbar-main-links {
		display: flex;
		align-items: center;
		gap: 2.5rem;
	}

	/* Hamburger white variant for dark/transparent bg */
	.hamburger-toggle-white .hamburger span {
		background: #ffffff;
	}

	/* Non-home pages: solid background navbar */
	.navbar-aesop.navbar-solid {
		position: sticky;
		top: 0;
		background-color: #252527;
	}

	@media screen and (max-width: 700px) {
		.navbar-aesop-logo {
			width: 55px;
		}
		.navbar-top-center {
			padding: 0 1rem;
		}
	}

	.bg-creme {
		background-color: #FBF9ED !important;
	}
	.bg-cream-secondary {
		background-color: #F6F5E8 !important;
	}
	.bg-section {
		background-color: #FBF9ED !important;
	}

	.nav-link {
		color: #000;
		font-weight: 200;
	}

	.nav-link:hover {
		text-decoration: underline;
	}

	.badge-notify {
		position: absolute;
		top: 0;
		right: 0;
		background: red;
		color: white;
		font-size: 0.7rem;
		border-radius: 50%;
		padding: 2px 5px;
	}

	.cart-icon {
		position: relative;
		display: inline-block;
	}

	.cart-image {
		height: 30px;
		width: 30px;
	}

	.cart-badge {
		position: absolute;
		top: -5px;
		left: -6px;
		background-color: #FF4949;
		color: white;
		font-size: 0.6rem;
		border-radius: 50%;
		padding: 2px 5px;
	}

	.user-image {
		height: 30px;
		width: 30px;
		margin: 10px;
	}

	.slider {
		width: 100%;
		height: 60px;
		overflow: hidden;
		position: relative;
		background-color: #f1f1f1;
	}

	.slides {
		display: flex;
		width: 100%;
		/* adjust based on number of slides */
		animation: slide 15s infinite alternate;
		animation-timing-function: ease-in-out;
	}

	.slide {
		width: 100%;
		height: 60px;
		flex-shrink: 0;
		display: flex;
		align-items: center;
		text-align: center;
		justify-content: center;
		background-color: #FFF3CC;
		font-size: 18px;
	}

	@media screen and (max-width: 700px) {
		.slide {
			font-size: 15px;
		}
	}

	/* ===========================
	   AESOP-STYLE HERO SECTION
	   =========================== */
	.hero-section {
		position: relative;
		height: 100vh;
		min-height: 600px;
		overflow: hidden;
		display: flex;
		align-items: flex-end;
		justify-content: center;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
	}

	.hero-section .hero-overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0.25) 0%,
			rgba(0, 0, 0, 0.2) 30%,
			rgba(0, 0, 0, 0.45) 60%,
			rgba(0, 0, 0, 0.7) 100%
		);
		z-index: 1;
	}

	.hero-section .hero-content {
		position: relative;
		z-index: 2;
		text-align: center;
		padding: 0 2rem 5rem;
		max-width: 900px;
	}

	.hero-section .hero-subtitle {
		font-family: 'Suisse Int\'l', sans-serif;
		font-size: 0.95rem;
		color: #ffffff;
		letter-spacing: 0.05em;
		margin-bottom: 1rem;
		font-weight: 400;
	}

	.hero-section .hero-heading {
		font-family: 'Zapf Humanist 601', sans-serif;
		font-size: 3rem;
		font-weight: 400;
		color: #ffffff;
		line-height: 1.2;
		margin-bottom: 1.25rem;
		letter-spacing: -0.01em;
	}

	.hero-section .hero-description {
		font-family: 'Suisse Int\'l', sans-serif;
		font-size: 1.05rem;
		color: rgba(255, 255, 255, 0.9);
		line-height: 1.6;
		margin-bottom: 2rem;
		font-weight: 300;
	}

	.hero-section .hero-cta {
		display: inline-flex;
		align-items: center;
		gap: 0.75rem;
		background: #ffffff;
		color: #252525;
		font-family: 'Suisse Int\'l', sans-serif;
		font-size: 0.95rem;
		font-weight: 400;
		padding: 1rem 2.5rem;
		border: none;
		border-radius: 0;
		text-decoration: none;
		letter-spacing: 0.02em;
		transition: background-color 0.3s ease, transform 0.2s ease;
		cursor: pointer;
	}

	.hero-section .hero-cta:hover {
		background: #f0f0f0;
		color: #252525;
		text-decoration: none;
		transform: translateY(-1px);
	}

	.hero-section .hero-cta .cta-arrow {
		font-size: 1.1rem;
		transition: transform 0.2s ease;
	}

	.hero-section .hero-cta:hover .cta-arrow {
		transform: translateX(4px);
	}

	/* Hero short variant (all subpages) */
	.hero-section--short {
		height: 60vh;
		min-height: 400px;
	}

	.hero-section--short .hero-content {
		padding: 0 2rem 3.5rem;
	}

	/* Hero responsive */
	@media screen and (max-width: 992px) {
		.hero-section {
			height: 85vh;
			min-height: 500px;
		}
		.hero-section--short {
			height: 50vh;
			min-height: 350px;
		}
		.hero-section .hero-heading {
			font-size: 2.5rem;
		}
		.hero-section .hero-content {
			padding: 0 1.5rem 4rem;
		}
		.hero-section--short .hero-content {
			padding: 0 1.5rem 3rem;
		}
	}

	@media screen and (max-width: 700px) {
		.hero-section {
			height: 80vh;
			min-height: 450px;
		}
		.hero-section--short {
			height: 45vh;
			min-height: 300px;
		}
		.hero-section .hero-heading {
			font-size: 2rem;
		}
		.hero-section .hero-description {
			font-size: 0.95rem;
		}
		.hero-section .hero-content {
			padding: 0 1rem 3rem;
		}
		.hero-section--short .hero-content {
			padding: 0 1rem 2.5rem;
		}
	}

	@media screen and (max-width: 480px) {
		.hero-section {
			height: 75vh;
			min-height: 400px;
		}
		.hero-section--short {
			height: 40vh;
			min-height: 260px;
		}
		.hero-section .hero-heading {
			font-size: 1.75rem;
		}
		.hero-section .hero-content {
			padding: 0 1rem 2.5rem;
		}
		.hero-section--short .hero-content {
			padding: 0 1rem 2rem;
		}
	}

	.rounded-button {
		display: inline-flex;
		align-items: center;
		padding: 10px 20px;
		border: 3px solid rgba(37, 37, 37, 1);
		border-radius: 25px;
		background-color: transparent;
		color: rgba(37, 37, 37, 1);
		font-size: 1rem;
		font-family: 'Zapf Humanist 601', sans-serif;
		cursor: pointer;
		text-decoration: none;
	}

	.rounded-button .dot {
		width: 8px;
		height: 8px;
		background-color: black;
		border-radius: 50%;
		margin-right: 10px;
	}

	/* Services */


	.philosophy-section {
		background-color: #FFFEF5;
		padding: 5rem 0;
	}

	.philosophy-inner {
		display: flex;
		align-items: stretch;
		min-height: 500px;
	}

	.philosophy-text {
		flex: 0 0 60%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 4rem 4rem 4rem 6rem;
	}

	.philosophy-label {
		display: block;
		font-family: 'Suisse Int\'l', sans-serif;
		font-size: 0.85rem;
		font-weight: 600;
		color: #252525;
		letter-spacing: 0.02em;
		margin-bottom: 1.5rem;
	}

	.philosophy-heading {
		font-family: 'Zapf Humanist 601', serif;
		font-size: 2.25rem;
		font-weight: 400;
		line-height: 1.2;
		color: #252525;
		margin-bottom: 1.5rem;
	}

	.philosophy-desc {
		font-family: 'Suisse Int\'l', sans-serif;
		font-size: 0.95rem;
		line-height: 1.7;
		color: #666;
		margin-bottom: 2.5rem;
	}

	.philosophy-cta {
		display: inline-flex;
		align-items: center;
		gap: 0.75rem;
		font-family: 'Suisse Int\'l', sans-serif;
		font-size: 0.9rem;
		color: #252525;
		text-decoration: none;
		border: 1px solid #252525;
		padding: 1rem 2rem;
		transition: background-color 0.3s ease, color 0.3s ease;
		align-self: flex-start;
	}

	.philosophy-cta:hover {
		background-color: #252525;
		color: #fff;
		text-decoration: none;
	}

	.philosophy-cta .cta-arrow {
		font-size: 1.1rem;
		transition: transform 0.3s ease;
	}

	.philosophy-cta:hover .cta-arrow {
		transform: translateX(4px);
	}

	.philosophy-img {
		flex: 1;
		overflow: hidden;
	}

	.philosophy-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	@media screen and (max-width: 991px) {
		.philosophy-text {
			padding: 3rem 2.5rem;
		}

		.philosophy-heading {
			font-size: 1.75rem;
		}
	}

	@media screen and (max-width: 767px) {
		.philosophy-inner {
			flex-direction: column;
			min-height: auto;
		}

		.philosophy-text {
			flex: none;
			padding: 3rem 1.5rem;
		}

		.philosophy-img {
			aspect-ratio: 16 / 10;
		}

		.philosophy-heading {
			font-size: 1.5rem;
		}
	}

	@media screen and (max-width: 480px) {
		.philosophy-text {
			padding: 2rem 1.25rem;
		}

		.philosophy-heading {
			font-size: 1.35rem;
		}

		.philosophy-desc {
			font-size: 0.875rem;
		}

		.philosophy-cta {
			padding: 0.8rem 1.5rem;
			font-size: 0.8rem;
		}
	}

	/* Reverse split: image left, text right (shared across pages) */
	.philosophy-inner--reverse {
		display: flex;
		align-items: stretch;
		min-height: 500px;
		flex-direction: row-reverse;
	}

	@media screen and (max-width: 767px) {
		.philosophy-inner--reverse {
			flex-direction: column;
			min-height: auto;
		}
	}

	/* Benefits list within philosophy text (shared across pages) */
	.about-benefits-list {
		list-style: none;
		padding: 0;
		margin: 0 0 2rem;
	}

	.about-benefits-list li {
		font-family: 'Suisse Int\'l', sans-serif;
		font-size: 0.95rem;
		line-height: 1.7;
		color: #666;
		padding: 0.5rem 0;
		border-bottom: 1px solid #e8e6df;
	}

	.about-benefits-list li:last-child {
		border-bottom: none;
	}

	.about-benefits-list li strong {
		color: #252525;
	}

	/* CTA section (shared across pages) */
	.about-stores-section {
		background-color: #FBF9ED;
		padding: 5rem 0;
		text-align: center;
	}

	@media screen and (max-width: 576px) {
		.about-stores-section {
			padding: 3rem 1.25rem;
		}
	}

	.about-stores-heading {
		font-family: 'Zapf Humanist 601', serif;
		font-size: 2.25rem;
		font-weight: 400;
		color: #252525;
		margin-bottom: 1rem;
	}

	@media screen and (max-width: 576px) {
		.about-stores-heading {
			font-size: 1.5rem;
		}
	}

	.about-stores-desc {
		font-family: 'Suisse Int\'l', sans-serif;
		font-size: 0.95rem;
		color: #666;
		line-height: 1.7;
		max-width: 600px;
		margin: 0 auto 2.5rem;
	}

	/*rate / testimonials*/

	.rate-section {
		padding: 5rem 0;
		background-color: #FBF9ED;
	}

	.rate-section-inner {
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 2rem;
	}

	.rate-section-header-row {
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		margin-bottom: 3rem;
		border-bottom: 1px solid #e8e6df;
		padding-bottom: 2rem;
	}

	.rate-section-left {
		flex: 1;
	}

	.rate-section-header {
		font-family: 'Zapf Humanist 601', serif;
		font-size: 2.25rem;
		font-weight: 400;
		color: #252525;
		margin: 0;
		text-transform: none;
	}

	.rate-section-right {
		display: flex;
		align-items: center;
		gap: 2rem;
		flex-shrink: 0;
	}

	.rate-section-summary {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		gap: 0.25rem;
	}

	.rate-section-stars {
		font-size: 1.1rem;
		color: #252525;
		letter-spacing: 2px;
	}

	.rate-section-text {
		font-family: 'Suisse Int\'l', sans-serif;
		font-size: 0.85rem;
		color: #666;
		margin: 0;
	}

	.arrow-set {
		display: flex;
		gap: 0.5rem;
	}

	.arrow-set-btn {
		width: 40px;
		height: 40px;
		border: 1px solid #e8e6df;
		background: transparent;
		color: #252525;
		font-size: 1rem;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: background-color 0.2s, color 0.2s;
	}

	.arrow-set-btn:hover {
		background-color: #252525;
		color: #FFFEF5;
	}

	.review-slider {
		overflow: hidden;
		width: 100%;
	}

	.review-track,
	.team-track {
		display: flex;
		transition: transform 0.5s ease-in-out;
	}

	.review-slide {
		display: flex;
		gap: 1.5rem;
		width: 100%;
		flex-shrink: 0;
	}

	.review-card {
		flex: 1;
		background: #FFFEF5;
		border: 1px solid #e8e6df;
		border-radius: 0;
		padding: 2rem;
		display: flex;
		flex-direction: column;
	}

	.review-card-stars {
		font-size: 0.95rem;
		color: #252525;
		letter-spacing: 2px;
		margin-bottom: 1rem;
	}

	.review-card-title {
		font-family: 'Zapf Humanist 601', serif;
		font-size: 1.15rem;
		font-weight: 400;
		color: #252525;
		margin-bottom: 0.75rem;
	}

	.review-card-text {
		font-family: 'Suisse Int\'l', sans-serif;
		font-size: 0.9rem;
		color: #666;
		line-height: 1.6;
		flex: 1;
		margin-bottom: 1.25rem;
	}

	.review-card-author {
		font-family: 'Suisse Int\'l', sans-serif;
		font-size: 0.85rem;
		color: #252525;
		font-weight: 500;
		margin: 0;
		padding-top: 1rem;
		border-top: 1px solid #e8e6df;
	}

	@media screen and (max-width: 991px) {
		.rate-section-header-row {
			flex-direction: column;
			align-items: flex-start;
			gap: 1.5rem;
		}

		.rate-section-right {
			width: 100%;
			justify-content: space-between;
		}

		.rate-section-summary {
			align-items: flex-start;
		}

		.review-slide {
			flex-wrap: wrap;
		}

		.review-card {
			flex: 1 1 100%;
		}
	}

	@media screen and (min-width: 992px) {
		.review-card {
			min-height: 220px;
		}
	}


	/*gnb section*/

	.gnb-section {
		padding-top: 70px;
		padding-bottom: 70px;
		background-color: #FFFEF5;

	}

	@media screen and (max-width: 700px) {
		.gnb-section {
			padding-top: 20px;
			padding-bottom: 20px;
			;

		}
	}

	.gnb-section-header {
		font-family: 'Zapf Humanist 601', sans-serif;
		color: #6E4B34;
	}

	.gnb-section-text {
		font-family: 'Suisse Int\'l', sans-serif;
		color: #252525;
		margin-bottom: 70px;
	}

	@media screen and (max-width: 700px) {
		.gnb-section-text {
			margin-bottom: 30px;
		}
	}

	.gnb-content-img {
		width: 100%;
		height: 380px;
		object-fit: cover;
	}

	@media screen and (max-width: 700px) {
		.gnb-content-img {
			height: auto;
		}
	}

	@media screen and (min-width: 701px) and (max-width: 1200px) {
		.gnb-content-img {
			height: 300px;
		}
	}

	.gnb-content-text {
		font-family: 'Suisse Int\'l', sans-serif;
		color: #252525;
		margin-bottom: 40px;
		height: 80px;
	}

	@media screen and (max-width: 700px) {
		.gnb-content-text {
			margin-bottom: 20px;
			height: auto;
		}
	}

	.gnb-frame {
		margin-bottom: 0px;
	}

	@media screen and (max-width: 700px) {
		.gnb-frame {
			margin-bottom: 40px;
		}
	}

	/*ps section*/

	.ps-section {
		padding-top: 70px;
		padding-bottom: 70px;
		background-color: #FBF9ED;

	}

	@media screen and (max-width: 700px) {
		.ps-section {
			padding-top: 20px;
			padding-bottom: 150px;
		}
	}

	.ps-section-header {
		font-family: 'Zapf Humanist 601', sans-serif;
		color: #6E4B34;
	}

	.ps-section-text {
		font-family: 'Suisse Int\'l', sans-serif;
		color: #252525;
		margin-bottom: 50px;
	}

	@media screen and (max-width: 700px) {
		.ps-section-text {
			margin-bottom: 30px;
		}
	}

	.ps-input-frame,
	.footer-input-frame {
		border: 2px solid rgba(37, 37, 37, 1);
		border-radius: 4px;
	}

	@media screen and (max-width: 700px) {
		.ps-input-frame {
			margin-bottom: 20px;
		}
	}

	@media screen and (max-width: 700px) {
		.footer-input-frame {
			margin-bottom: 10px;
		}
	}

	.ps-input-frame input,
	.ps-input-frame .ps-input-frame-bck-gnd,
	.footer-input-frame input,
	.footer-input-frame .ps-input-frame-bck-gnd {
		background-color: #FBF9ED;
		font-family: 'Suisse Int\'l', sans-serif;
		font-size: 15px;
		color: #252525;
	}

	@media screen and (max-width: 700px) {

		.ps-input-frame input,
		.ps-input-frame .ps-input-frame-bck-gnd {
			text-align: center;
		}
	}


	.ps-input-frame input:focus,
	.ps-input-frame .ps-input-frame-bck-gnd:focus {
		background-color: #FBF9ED;
		box-shadow: inherit;
		box-shadow: 0px 4px 6px #6E4B34;
	}

	.ps-btn {
		background-color: #323232;
		font-family: 'Suisse Int\'l', sans-serif;
		font-size: 15px;
		width: 80%;
		height: 100%;
	}

	@media screen and (max-width: 991px) {
		.ps-btn {
			width: 100%;
		}
	}

	.ps-frame {
		height: 50px;
	}

	@media screen and (max-width: 991px) {
		.ps-frame {
			height: 250px;
		}
	}

	.ps-img {
		position: relative;
		/* transform: translateX(300%) translateY(-25%); */
		transform: translateY(-60%);
		width: 186px;
	}

	@media screen and (max-width: 991px) {
		.ps-img {
			transform: none;
			margin: 20px;
		}
	}

	/* ===========================
	   EXCLUSIVE FAVORITES (Aesop-style)
	   =========================== */
	.ef-section {
		padding: 80px 0;
		background-color: #FFFEF5;
	}

	@media screen and (max-width: 991px) {
		.ef-section {
			padding: 50px 0;
		}
	}

	@media screen and (max-width: 576px) {
		.ef-section {
			padding: 2rem 0;
		}

		.ef-header {
			font-size: 1.5rem;
		}

		.ef-subheader {
			font-size: 0.875rem;
			margin: 0 1.25rem 2rem;
		}
	}

	.ef-header {
		font-family: 'Zapf Humanist 601', sans-serif;
		font-size: 2.25rem;
		font-weight: 400;
		color: #252525;
		text-align: center;
		margin-bottom: 0.75rem;
	}

	.ef-subheader {
		font-family: 'Suisse Int\'l', sans-serif;
		font-size: 1rem;
		color: #666;
		text-align: center;
		max-width: 600px;
		margin: 0 auto 3rem;
		line-height: 1.6;
	}

	/* Product grid - 3 columns */
	.ef-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
		margin-bottom: 3rem;
	}

	@media screen and (max-width: 991px) {
		.ef-grid {
			grid-template-columns: repeat(2, 1fr);
			gap: 1.5rem;
		}
	}

	@media screen and (max-width: 576px) {
		.ef-grid {
			grid-template-columns: 1fr;
			gap: 2rem;
		}
	}

	/* Product card */
	.ef-card {
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.ef-card-img {
		width: 100%;
		aspect-ratio: 1 / 1;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 1.5rem;
		background: #f5f4ee;
		overflow: hidden;
	}

	.ef-card-img img {
		max-width: 80%;
		max-height: 80%;
		object-fit: contain;
	}

	.ef-card-name {
		font-family: 'Suisse Int\'l', sans-serif;
		font-size: 1.1rem;
		font-weight: 500;
		color: #252525;
		margin-bottom: 0.5rem;
		line-height: 1.4;
	}

	.ef-card-price {
		font-family: 'Suisse Int\'l', sans-serif;
		font-size: 1rem;
		color: #666;
		margin-bottom: 1.25rem;
	}

	.ef-card-btn {
		display: block;
		width: 100%;
		padding: 1rem;
		background: #323232;
		color: #ffffff;
		font-family: 'Suisse Int\'l', sans-serif;
		font-size: 0.95rem;
		font-weight: 400;
		border: none;
		text-align: center;
		text-decoration: none;
		cursor: pointer;
		transition: background-color 0.2s ease;
	}

	.ef-card-btn:hover {
		background: #1a1a1a;
		color: #ffffff;
		text-decoration: none;
	}

	.ef-card-btn:disabled {
		background: #999;
		cursor: not-allowed;
	}

	.ef-shop-all {
		text-align: center;
		margin-bottom: 1rem;
	}

	.efs-bottom {
		margin-top: 80px;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}

	@media screen and (max-width: 940px) {
		.efs-bottom {
			margin-top: 40px;
		}
	}

	.ef-bottom {
		display: flex;
		align-items: center;
		gap: 10px;
	}

	@media screen and (max-width: 1200px) {
		.ef-bottom {
			margin: 10px;
		}
	}

	/* @media screen and (min-width:941px) and (max-width: 1200px) {
		.ef-bottom {
			width: 400px;
			margin: 10px;
		}
	} */

	.ef-bottom-img {
		width: 100px;
		height: 100px;
		border: 4px solid #CDCDCD;
		border-radius: 50%;
		overflow: hidden;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		background-color: rgba(255, 254, 245, 1);
		padding: 10px;
	}

	.ef-bottom-text {
		width: 180px;
		display: flex;
		flex-direction: column;
		/* Stacks title & description */
	}

	@media screen and (min-width:941px) and (max-width: 1200px) {
		.ef-bottom-text {
			width: 300px;
		}
	}

	@media screen and (max-width: 576px) {
		.ef-bottom {
			flex-direction: column;
			align-items: center;
			text-align: center;
		}

		.ef-bottom-text {
			width: 100%;
		}

		.ef-bottom-img {
			width: 80px;
			height: 80px;
		}
	}

	.ef-bottom-title {
		font-size: 16px;
		font-weight: bold;
		color: #252525;
		font-family: 'Helvetica', sans-serif;
	}

	.ef-bottom-desc,
	.hnh-content-text,
	.footer-section-text {
		font-size: 16px;
		color: #252525;
		margin-top: 3px;
		font-family: 'Suisse Int\'l', sans-serif;
	}


	/*hnh-section*/

	.hnh-section {
		padding-top: 70px;
		padding-bottom: 70px;
		background-color: #FBF9ED;
		text-align: center;
	}

	@media screen and (max-width: 940px) {
		.hnh-section {
			padding-top: 30px;
			padding-bottom: 30px;
		}
	}

	.hnh-section-header {
		font-family: 'Zapf Humanist 601', sans-serif;
		color: #6E4B34;
		margin-bottom: 30px;
	}

	@media screen and (max-width: 940px) {
		.hnh-section-header {
			text-align: center !important;
		}
	}

	.hnh-more-btn {
		position: relative;
		transform: translateY(-160%);
		text-align: center;
	}

	@media screen and (max-width: 991px) {
		.hnh-more-btn {
			display: none;
		}
	}

	.hnh-more-btn-bottom-center {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.hnh-more-btn-bottom {
		position: relative;
		text-align: center;
		display: none;
	}


	@media screen and (max-width: 991px) {
		.hnh-more-btn-bottom {
			display: flex;
		}
	}

	.hnh-content-img-big {
		width: 100%;
		height: auto;
		border-radius: 15px;
	}

	@media screen and (max-width: 940px) {
		.hnh-content-img-big {
			width: 100%;
			height: auto;
		}
	}

	.hnh-content-text-big {
		font-family: 'Suisse Int\'l', sans-serif;
		color: #252525;
		margin-bottom: 40px;
	}

	.hnh-content-title {
		font-family: 'Zapf Humanist 601', sans-serif;
		color: #252525;
		font-size: 24px;
		text-align: left;
	}

	@media (min-width: 1201px) and (max-width: 1400px) {
		.hnh-content-title {
			font-size: 20px;
		}
	}

	@media (min-width: 1201px) and (max-width: 1400px) {
		.hnh-content-text {
			font-size: 15px;
		}
	}

	.hnh-bottom {
		display: flex;
		gap: 20px;
		margin-bottom: 20px;
	}

	/* @media screen and (min-width: 771px) and (max-width:1399px) {
		.hnh-bottom {
			display: flex;
			gap: 0px;
		}
	} */

	.hnh-bottom-img {
		width: 239px;
		height: 160px;
		border-radius: 15px;
	}

	@media screen and (max-width: 940px) {
		.hnh-bottom-img {
			width: 100%;
			max-width: 380px;
			height: auto;
		}

		.hnh-bottom {
			flex-direction: column;
			align-items: center;
		}
	}

	.hnh-bottom-text {
		width: 500px;
		height: 160px;
		display: flex;
		flex-direction: column;
		/* Stacks title & description */
	}

	@media screen and (max-width: 940px) {
		.hnh-bottom-text {
			width: 100%;
			height: auto;
			padding: 0px !important;
		}
	}

	@media screen and (max-width: 767px) {
		.extra-hnh {
			display: none;
		}
	}

	@media screen and (min-width: 768px) and (max-width:1200px) {
		.extra-hnh-2 {
			display: none;
		}
	}

	@media (min-width: 768px) and (max-width: 1200px) {
		.custom-responsive-col {
			flex: 0 0 100% !important;
			max-width: 100% !important;
		}
	}

	/*footer*/
	.footer-section-1 {
		padding-top: 30px;
		padding-bottom: 30px;
		background-color: #FFFEF5;
	}

	.footer-section-2 {
		padding-top: 30px;
		background-color: #FBF9ED;
	}

	.footer-section-title {
		font-size: 20px;
		font-weight: bold;
		color: #252525;
		font-family: 'Helvetica', sans-serif;
	}

	.footer-section-btn {
		background-color: #323232;
		font-family: 'Suisse Int\'l', sans-serif;
		font-size: 15px;
		width: 160px;
		height: 100%;
	}

	@media screen and (max-width: 940px) {
		.footer-section-btn {
			width: 100%;
			height: 100%;
		}
	}

	.footer-info-row {
		padding-bottom: 100px;
		display: flex;
	}

	@media screen and (max-width: 576px) {
		.footer-info-row {
			padding-bottom: 2rem;
			flex-direction: column;
		}
	}

	.footer-info-col {
		padding: 10px;
	}

	@media screen and (max-width: 940px) {
		.footer-info-col {
			padding-left: 20px;
			padding-right: 20px;
		}
	}

	.footer-info-title {
		font-size: 18px;
		font-weight: bold;
		color: #252525;
		font-family: 'Helvetica', sans-serif;
		margin-bottom: 10px;
	}

	.logo-info-img {
		width: 140px;
		height: 169px;
	}

	.footer-chat-img {
		position: relative;
		transform: translateY(-50%);
		text-align: center;
	}

	.footer-chat-badge {
		position: relative;
		top: -60px;
		left: -25px;
		background-color: #FF4949;
		color: white;
		font-size: 15px;
		border-radius: 50%;
		padding: 5px 5px;
		width: 30px;
		height: 30px;
	}

	.footer-rights-reserved {
		font-size: 12px;
		color: #676767;
		font-family: 'Suisse Int\'l', sans-serif;
	}

	/*about us page section*/

	.about-us-section {
		background-image: url('../img/about-us-background.png');
		background-color: #FBF9ED;
		background-repeat: no-repeat;
		background-position: left center;
		background-size: contain;
		height: 50vh;
		position: relative;
		padding-bottom: 30px;
	}

	@media screen and (max-width: 1200px) {
		.about-us-section {
			background-repeat: repeat;
			padding-bottom: 0px;
		}
	}

	.about-us-section-overlay {
		background-color: transparent;
		width: 50%;
		height: 50vh;
		position: absolute;
		top: 0;
		left: 0;
		display: flex;
		align-items: center;
		/* justify-content: flex-start; */
		/* padding: 4rem; */
		padding-left: 100px;
	}

	@media screen and (max-width: 940px) {
		.about-us-section-overlay {
			padding-left: 50px;
		}
	}

	@media screen and (max-width: 576px) {
		.about-us-section-overlay {
			width: 100%;
			padding-left: 1.25rem;
			padding-right: 1.25rem;
		}

		.about-us-section {
			height: auto;
			min-height: 40vh;
		}

		.about-us-section-overlay {
			position: relative;
			height: auto;
			padding-top: 2rem;
			padding-bottom: 2rem;
		}
	}

	.about-us-section-header {
		font-family: 'Zapf Humanist 601', sans-serif;
		max-width: 450px;
		color: #FFF3CC;
	}

	.about-us-section-text {
		font-family: 'Suisse Int\'l', sans-serif;
		max-width: 450px;
		color: #FFF3CC;
		margin-bottom: 70px;
		font-size: 16px;

	}

	@media screen and (max-width: 940px) {
		.about-us-section-text {
			margin-bottom: 0px;
		}
	}

	/*story and mission*/
	.story-section {
		/* padding-top: 30px;  */
		padding-bottom: 30px;
		background-color: #FBF9ED;
		text-align: center;
	}

	@media screen and (max-width: 940px) {
		.story-section {
			padding-top: 0px;
			padding-bottom: 30px;
		}
	}

	.mission-section {
		padding-top: 30px;
		background-color: #FFFEF5;
		text-align: center;
	}

	.story-section-text {
		font-family: 'Suisse Int\'l', sans-serif;
		color: #252525;
		margin: 100px;
		/* margin-top: 0px; */
	}

	@media screen and (max-width: 940px) {
		.story-section-text {
			margin: 50px;
			margin-top: 20px;
			text-align: justify !important;
		}
	}

	@media screen and (max-width: 576px) {
		.story-section-text {
			margin: 1.25rem;
			margin-top: 1rem;
		}
	}

	.story-section-question {
		font-family: 'Zapf Humanist 601', sans-serif;
	}

	@media screen and (max-width: 940px) {
		.story-section-question {
			margin-bottom: 1rem;
		}
	}

	.story-section-img {
		width: 100%;
		height: 90vh;
		object-fit: cover;
	}

	@media screen and (max-width: 1200px) {
		.story-section-img {
			height: auto;
		}
	}

	@media screen and (min-width: 768px) and (max-width:1200px) {
		.section-img-flex {
			display: flex;
			align-items: center;
			justify-content: center;
		}
	}

	/*team section*/
	.team-card {
		background: transparent;
		padding: 10px;
		width: 237px;
		height: 281px;
		margin: 10px;
	}

	@media (min-width: 991px) and (max-width: 1200px) {
		.team-card {
			width: 180px;
		}
	}

	.team-card h5 {
		color: #252525;
		font-weight: bold;
	}

	.team-card p {
		font-family: 'Suisse Int\'l', sans-serif;
		color: #252525;
		font-size: 16px;
	}

	.team-img {
		width: 207px;
		height: 192px;
		border-radius: 15px;
	}

	@media (min-width: 991px) and (max-width: 1200px) {
		.team-img {
			width: 180px;
		}
	}

	@media screen and (max-width: 576px) {
		.team-card {
			width: 150px;
			height: auto;
			margin: 5px;
		}

		.team-img {
			width: 140px;
			height: auto;
		}

		.team-card p {
			font-size: 14px;
		}
	}

	/*benefit section*/
	.benefit-section--header-text {
		font-family: 'Suisse Int\'l', sans-serif;
		color: #252525;
		margin-bottom: 50px;
	}

	.benefit-section-text {
		font-family: 'Suisse Int\'l', sans-serif;
		color: #252525;
		margin: 70px;
		margin-top: 10px;
	}

	@media screen and (max-width: 940px) {
		.benefit-section-text {
			margin: 40px;
		}
	}

	@media screen and (max-width: 576px) {
		.benefit-section-text {
			margin: 1.25rem;
		}
	}

	.benefit-ul {
		list-style-type: disc;
	}

	.benefit-li {
		color: #252525;
		font-size: 16px;
		text-align: justify;

	}

	/*HQ section*/
	.HQ-time-td {
		width: 200px;
	}

	@media screen and (max-width: 576px) {
		.HQ-time-td {
			width: auto;
		}
	}

	.HQ-text {
		font-size: 16px;
		color: #252525;
		margin-bottom: 0px;
	}

	@media screen and (max-width: 940px) {
		.adjust-padding {
			padding-top: 0px !important;
		}
	}

	/*store-section*/
	.store-section {
		padding-top: 70px;
		padding-bottom: 70px;
		background-color: #FBF9ED;

	}

	@media screen and (max-width: 940px) {
		.store-section {
			padding-top: 30px;
			padding-bottom: 30px;

		}
	}
