@font-face {
	font-family: 'main';
	src: url('../fonts/Adoria.otf');
}

:root {
	--primary: #ffd446;
	--light: #e7e7e7;
	--secondary: #29292b;
	--primary-dark: #ffd742;
	--primary-light: #f7e195;
	--dark: #202020;
	--darker: #151414;
	--gray: #87878ff6;

	--ff-title: 'Poiret One', serif;
	--ff-base: Arial, Helvetica, sans-serif;
	--ff-sub: 'Poiret One', serif;
	--title-font: 50px;
	--mid-font: 30px;
	--normal-font: 20px;

	--fw-regular: 400;
	--fw-bold: 700;
	--fw-light: 300;
	scroll-behavior: smooth;
}

/*#region Common*/
*,
*::before,
*::after {
	box-sizing: border-box;
	user-select: none;
}

body {
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	background-color: var(--dark) !important;
	background-color: white !important;
	background-color: var(--light) !important;
}

p,
h4,
h5,
h6 {
	overflow-wrap: break-word;
	font-weight: bold;
	font-family: var(--ff-sub);
}

h1,
h2,
h3 {
	line-height: 1;
	font-family: 'main';
	text-transform: uppercase;
}

.mid-font {
	font-family: var(--ff-sub);
	font-size: var(--mid-font);
	font-weight: var(--fw-light);
}

.reg-font {
	font-family: var(--ff-base);
	font-size: var(--normal-font);
	font-weight: var(--fw-regular);
	margin-left: 0px !important;
}

.title-font {
	font-family: 'main';
	font-size: var(--title-font);
	font-weight: var(--fw-bold);
	text-transform: uppercase;
	margin-bottom: 30px;
}

.icon-mask {
	display: block;
	background-color: white;
	width: 25px;
	aspect-ratio: 1 / 1;
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
}

.icon-mask:hover {
	background-color: var(--primary);
}

.intro-header {
	position: relative;
	height: 80vh;
	width: 100%;
	isolation: isolate;
}

.intro-header > img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
}

.intro-header::before {
	content: '';
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: -1;
}

.intro-header > .container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
}

.intro-header > .container > h1 {
	font-size: 3em;
}

/*#endregion */

/*#region Sections*/
section {
	margin: 80px 0px;
	padding: unset !important;
}

.section-header {
	timeline-scope: --rotateFixedSquare;
	view-timeline: --rotateFixedSquare y;
	--height: 110px;

	position: relative;
	height: var(--height);
	overflow: hidden;
	width: 100%;
	border-bottom: var(--primary) 8px solid;
	margin-block: 0px 10px;
	background-color: var(--darker);
}

.section-header > div {
	display: flex;
	height: var(--height);
	align-items: start;
	position: absolute;
	left: 0px;
	right: 0px;
	top: 100%;
	animation: sectionTitle 1ms backwards;
	animation-timeline: --rotateFixedSquare;
}

@keyframes sectionTitle {
	0%,
	15%,
	100% {
		top: 100%;
	}

	70%,
	80% {
		top: 0%;
	}
}

.section-header h1 {
	font-size: 4em;
	margin: 25px 0px 0px 40px;
	color: var(--primary);
	font-family: 'main';
	text-transform: uppercase;
}

.section-title {
	display: flex;
	position: relative;
	margin: 2rem 0rem;
	width: 100%;
	height: 80px;
	padding: 0px;
}

.section-title-left {
	display: flex;
	align-items: center;
	justify-content: end;
	z-index: 10;
	position: absolute;
	height: 100%;
	max-width: 55%;
	border-radius: 0px 50px 50px 0px;
	background-color: var(--primary);
}

.section-title-right {
	position: absolute;
	height: 100%;
	right: 0px;
	width: 55vw;
	border-radius: 50px 0px 0px 50px;
	background-color: var(--primary);
}

/*#endregion */

/*#region Header*/
.nav-container {
	timeline-scope: --rotateFixedSquare;
}

.nav-eee {
	position: absolute;
	inset: 100% 0px -10% 0px;
	pointer-events: none;
	view-timeline: --rotateFixedSquare y;
}

.c-navbar {
	z-index: 20001;
	position: fixed !important;
	left: 0px;
	right: 0px;
	background-color: var(--darker);
	animation: nav-scroll 1ms alternate-reverse;
	animation-timeline: --rotateFixedSquare;
	z-index: 1000;
}

.nav-bttn {
	display: none;
}

@keyframes nav-scroll {
	100% {
		background-color: transparent;
	}
}

.c-navbar {
	display: flex;
	flex-direction: row;
	padding: 15px 50px;
}

.nav-image > img {
	width: 100px;
}

.nav-items {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 30px;
	margin-inline: auto;
}

.nav-links {
	margin-inline: auto;
}

.nav-links > a {
	position: relative;
	color: white;
	text-decoration: none;
	font-size: 1.1em;
	font-family: var(--ff-base);
	text-transform: uppercase;
	padding: 0px 15px 2px;
}

.nav-links > a::before {
	content: '';
	position: absolute;
	height: 1px;
	background-color: white;
	bottom: 0px;
	left: 0px;
	width: 0%;
	transition: width 300ms ease-in;
}

.nav-links > a:hover::before,
.nav-links > a.active::before {
	width: 100%;
}

.nav-items {
	flex-grow: 1;
}

.nav-items > .social-media {
	display: flex;
	flex-direction: row;
	gap: 10px;
	opacity: 0.7;
}

/*#endregion */

/*#region Footer*/
.footer-section {
	background: var(--darker);
	position: relative;
}

.footer-pattern img {
	position: absolute;
	top: 0;
	left: 0;
	height: 330px;
	background-size: cover;
	background-position: 100% 100%;
}

.footer-logo {
	margin-bottom: 30px;
}

.footer-logo img {
	max-width: 200px;
}

.footer-text p {
	margin-bottom: 14px;
	font-size: 14px;
	color: #7e7e7e;
	line-height: 28px;
}

.footer-social-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--primary);
	border-radius: 50%;
	width: 35px;
	aspect-ratio: 1 / 1;
	margin-right: 10px;
}

.footer-social-icon .icon-mask {
	background-color: black;
}

.footer-social-icon:hover {
	background-color: var(--primary-light);
}

.footer-widget-heading h3 {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 40px;
	position: relative;
}

.footer-widget-heading h3::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -15px;
	height: 2px;
	width: 50px;
	background-color: var(--primary);
}

.footer-widget ul li {
	display: inline-block;
	float: left;
	width: 50%;
	margin-bottom: 12px;
}

.footer-widget ul {
	margin: 0px;
	padding: 0px;
}

.footer-widget ul li a:hover {
	color: var(--primary);
}

.footer-widget ul li a {
	color: #878787;
	text-decoration: none;
	text-transform: capitalize;
}

.copyright-area {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: var(--dark);
	padding: 20px 0;
}

.copyright-area p {
	display: flex;
	justify-content: center;
	margin: 0;
	font-size: 14px;
	color: #878787;
	align-items: center;
	gap: 5px;
}

.copyright-area .icon-mask {
	margin-left: 10px;
	width: 20px;
}

.copyright-area a {
	text-decoration: none;
	font-size: 1.2em;
	color: white;
}

/*#endregion */

/*#region Products*/
.home-porducts {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 20px;
	gap: 30px;
	padding: 0px 40px;
}

.hp-item {
	--size: 50px;
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background-color: white;
}

.hp-item > img {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;

	transition: all 350ms ease-out;
	z-index: 2;
}

.hp-item:hover > img {
	top: calc(var(--size) * -1);
}

.hp-item > h2 {
	font-size: 1.5em;
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	height: var(--size);
	background-color: var(--primary);
	color: black;

	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0px;
	padding-block: 10px 0px;
	z-index: 1;
}

/*#endregion */

/*#region Brands*/
.b-section {
	margin-bottom: 0px !important;
}

.b-section,
.b-section .section-header {
	background-color: var(--primary);
}

.b-section .section-header {
	border-bottom-color: var(--darker);
}

.b-section .section-header .title {
	color: black;
}

.marquee-container {
	display: block;
	position: relative;
	margin-block: 30px 0px;
	height: 130px;
	overflow: hidden;
	/* line-height: 00px; */
}

.marquee-container > .marquee {
	top: 0;
	left: 200%;
	width: 100%;
	display: flex;
	justify-content: space-around;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	animation: marquee 60s linear infinite;
	animation-direction: reverse;
	animation-delay: -30s;
}

.marquee-container > .marquee2 {
	animation-delay: 0s;
}

@keyframes marquee {
	0% {
		left: 100%;
	}

	100% {
		left: -100%;
	}
}

.marquee-container::before,
.marquee-container::after {
	position: absolute;
	content: ' ';
	top: 0px;
	bottom: 0px;
	width: 200px;
	z-index: 5;
}

.marquee-container::before {
	left: 0px;
	background: linear-gradient(-90deg, rgba(0, 0, 0, 0) 0%, var(--primary) 90%);
}

.marquee-container::after {
	right: 0px;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, var(--primary) 90%);
}

.brand-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.brand-item > img {
	height: 90px;
	aspect-ratio: 1 / 1;
	object-fit: contain;
}

.brand-item > div {
	font-family: var(--ff-sub);
	font-size: 1.2em;
}

/*#endregion */

/*#region highlite*/
.highlite-tab {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	padding-inline: 50px;
}

.highlite-item {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 5px;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.highlite-item::before {
	content: '';
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 10;
	border: 2px solid var(--primary);
	opacity: 0;
	transition: 500ms ease-out;
	transition-property: border-width, opacity;
	pointer-events: none;
}

.highlite-item:hover::before {
	border-width: 15px;
	opacity: 1;
}

.highlite-item img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.highlite-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	inset: 0px;
	color: var(--primary);
	transition: all 450ms ease-in-out;
	opacity: 0;
	backdrop-filter: blur(0px);
}

.highlite-text:hover {
	opacity: 1;
	background-color: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(3px);
}

.highlite-text > h2 {
	font-size: 2.5em;
	color: white;
}

.highlite-text > h4 {
	color: var(--primary-light);
}

/*#endregion */

/*#region About*/
.abuot-section {
	position: relative;
	isolation: isolate;
}

.bg-image {
	position: absolute;
	object-fit: cover;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	filter: brightness(0.4);
	z-index: -1;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	color: var(--primary-light);
	padding: 50px 40px;
	min-height: 80vh;
}

.about-info {
	place-self: center;
}

.about-circle {
	--dis: 200px;
	--size: 200px;
	position: relative;
	min-height: 50vh;
	height: 100%;
	timeline-scope: --timeY;
	view-timeline: --timeY y;
}

.ac-center,
.ac-outline,
.ac-item {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.ac-center {
	width: var(--size);
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background-color: black;

	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	z-index: 10;
}

.ac-outline {
	width: calc(var(--dis) * 2);
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	border: var(--dark) 3px solid;
	z-index: 1;
	animation: acOutline 1ms alternate;
	animation-timeline: --timeY;
}

@keyframes acOutline {
	0%,
	100% {
		width: 10px;
	}

	60%,
	70% {
		width: calc(var(--dis) * 2);
	}
}

.ac-item {
	--rotation: calc((360deg / var(--len)) * var(--i));
	transform: rotateZ(var(--rotation)) translateX(var(--dis));
	z-index: 5;
	animation: acItem 1ms alternate;
	animation-timeline: --timeY;
}

@keyframes acItem {
	0%,
	100% {
		transform: rotateZ(var(--rotation)) translateX(10px) scale(0.2);
	}

	60%,
	70% {
		transform: rotateZ(var(--rotation)) translateX(var(--dis)) scale(1);
	}
}

.ac-item > button {
	--size: 60px;
	--half: calc(var(--size) / -2);
	width: var(--size);
	height: var(--size);
	transform: rotateZ(calc(var(--rotation) * -1)) translate(var(--half), var(--half));

	padding: 11px;
	background-color: var(--dark);
	border: none;
	border-radius: 50%;
}

.ac-item .icon-mask {
	width: 100%;
}

/*#endregion */

/*#region Best Seller*/

.bs-container {
	display: flex;
	flex-direction: column;
	padding: 0px 40px;
}

.bs-item-container {
	timeline-scope: --timeY;
	view-timeline: --timeY y;
	margin-bottom: -100px;
}

.bs-item {
	align-items: center;
	width: 40vw;
	height: 450px;
	display: flex;
	margin-inline: auto 20vw;
	position: relative;
	z-index: 5;
	animation: bsView 1ms alternate;
	animation-timeline: --timeY;
}

@keyframes bsView {
	0% {
		transform: translateY(100vh);
		opacity: 0;
	}

	60% {
		opacity: 1;
	}

	70%,
	100% {
		transform: translateY(0px);
	}
}

.bs-item > img {
	position: absolute;
	height: 450px;
	width: 450px;
	right: calc(-20vw + 30px);
	z-index: -1;
	object-fit: cover;
}

.bs-info {
	position: relative;
	padding: 10px 20px 20px;
	margin: 0px 20px 0px 00px;
	background-color: var(--primary-dark);
	color: black;
	border-radius: 20px 5px 5px 20px;
	box-shadow: 15px 15px 10px rgba(0, 0, 0, 0.4);
}

.bs-info::before {
	content: ' ';
	position: absolute;
	inset: -15px;
	z-index: -1;
	border-radius: 30px 0px 0px 30px;
	background: linear-gradient(-45deg, #e73c7e, var(--primary));
	background-size: 200% 200%;
	animation: gradient 5s ease infinite;
}

.bs-info .title-font {
	margin-bottom: 0px;
	font-size: 2em;
}

@keyframes gradient {
	0%,
	100% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}
}

.bs-item-container:nth-child(even) .bs-item {
	margin-inline: 20vw;
}

.bs-item-container:nth-child(even) .bs-item > img {
	left: calc(-20vw + 30px);
	right: unset !important;
}

.bs-item-container:nth-child(even) .bs-info {
	margin: 0px 0px 0px 20px;
	border-radius: 5px 20px 20px 5px;
}

.bs-item-container:nth-child(even) .bs-info::before {
	border-radius: 0px 30px 30px 0px;
}

/*#endregion */

/*#region Contact Us*/
.cu-section {
	margin-bottom: 0px;
}

.cu-section .section-header {
	margin-bottom: 0px;
}

.cu-container {
	display: grid;
	grid-template-columns: 1fr auto;
}

.cu-container > .map {
	height: 80vh;
	pointer-events: none;
	z-index: -1;
}

.cu-container > .map > *{
	width: 100%;
	height: 100%;
}

.cu-items {
	display: flex;
	flex-direction: column;
	justify-content: center;

	gap: 30px;
	background-color: var(--dark);
	width: 100%;
	padding: 10px 30px;
	color: white;
}

.cu-items .title-font {
	font-size: 1.5em !important;
	margin-bottom: 10px;
}

.cu-item {
	display: flex;
	flex-direction: row;
	align-items: center;
	text-decoration: none !important;
	color: white !important;
	position: relative;
	width: 80%;
	margin-inline: auto;
	padding: 5px 10px 10px;
	background-color: transparent;
	border-radius: 10px 10px 0px 0px;
	transition: background-color 0.3s ease-in-out;
}

.cu-item::before {
	content: ' ';
	position: absolute;
	background-color: white;
	left: 0px;
	right: 100%;
	bottom: 0px;
	height: 2px;
	transition: right 0.3s ease-in-out;
}

.cu-item:hover {
	background-color: rgba(0, 0, 0, 0.5);
}

.cu-item:hover:before {
	right: 0%;
}

.cu-item > .icon-mask {
	width: 30px;
}

.cu-item .title {
	font-size: 1.3em;
	margin-left: 10px;
}

/*#endregion */
