/* ================= GOOGLE FONTS =============== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400&family=Ubuntu:wght@300;400;500;700&display=swap");

@font-face {
	font-family: Berliana;
	src: url(/assets/fonts/Berliana\ Lovely.otf);
}

/* ================= VARIABLES CSS =============== */
:root {
	--header-height: 3.5rem;

	/* ======== Colors ========== */
	/* Color mode HSL(hue, saturation, lightness) */
	--first-color: #ffd700;        /* Gold */
	--first-color-alt: #e6c200;    /* Darker gold */
	--title-color: #fafafa;
	--text-color: #a7abb4;
	--text-color-light: ;
	--white-color: #fff;
	--body-color: #01000a;
	--container-color: #182334;

	/* ========== Fonts and Typography ============= */
	/*  .5rem = 8px | 1rem = 16px */
	--text-font: "Poppins", sans-serif;
	--title-font: "Ubuntu", sans-serif;
	--biggest-font-size: 2rem;
	--h1-font-size: 1.5rem;
	--h2-font-size: 1.25rem;
	--h3-font-size: 1rem;
	--normal-font-size: 0.938rem;
	--small-font-size: 0.813rem;
	--smaller-font-size: 0.75rem;

	/* ======== Font Weight =========== */
	--font-lighter: 300;
	--font-light: 400;
	--font-medium: 500;
	--font-semi-bold: 600;

	/* ========= Z Index =========== */
	--z-tooltip: 10;
	--z-fixed: 100;
}

/* Responsive Typography */
@media screen and (min-width: 968px) {
	:root {
		--h1-font-size: 2.25rem;
		--h2-font-size: 1.5rem;
		--h3-font-size: 1.25rem;
		--normal-font-size: 1rem;
		--small-font-size: 0.875rem;
		--smaller-font-size: 0.813rem;
	}
}

/* ============== BASE ============ */
* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--text-font);
	font-size: var(--normal-font-size);
	background-color: var(--body-color);
	color: var(--text-color);
}

h1,
h2,
h3 {
	color: var(--title-color);
	font-weight: var(--font-semi-bold);
	font-family: var(--title-font);
	line-height: 1.4;
}

ul {
	list-style: none;
	font-family: var(--title-font);
}

a {
	text-decoration: none;
	font-family: var(--title-font);
}

img {
	max-width: 100%;
	height: auto;
}

/* ============== REUSABLE CSS CLASSES =============== */
.container {
	max-width: 1024px;
	margin-right: 1.5rem;
	margin-left: 1.5rem;
}

.grid {
	display: grid;
	gap: 1.5rem;
}

.section {
	padding: 2rem 0 2rem;
}

.section__title {
	font-size: var(--h1-font-size);
	margin-bottom: 2.5rem;
	font-family: var(--title-font);
}

.subtitle {
	font-size: var(--smaller-font-size);
	color: var(--first-color);
	padding-left: 2rem;
	position: relative;
	display: flex;
	margin-bottom: 1.3rem;
}

.subtitle::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 20px;
	height: 2px;
	background-color: var(--first-color);
}

.main {
	overflow: hidden;
}

/* ================= HEADER & NAV MENU =============== */
.header {
	width: 100%;
	background-color: transparent;
	position: fixed;
	top: 0;
	left: 0;
	z-index: var(--z-fixed);
	border-bottom: 1px solid rgba(109, 109, 109, 0.4);
}

.nav {
	height: var(--header-height);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--title-font);
}

.nav__logo,
.nav__toggle {
	color: var(--title-color);
	display: inline-flex;
}

.nav__logo {
	align-items: center;
	column-gap: 0.25rem;
	font-weight: var(--font-medium);
	transition: 0.3s;
}

.nav__logo i {
	font-size: 1.25rem;
	color: var(--first-color);
}

.nav__logo:hover {
	color: var(--first-color);
}

.nav__toggle {
	font-size: 1.25rem;
	cursor: pointer;
}

@media screen and (max-width: 767px) {
	.nav__menu {
		position: fixed;
		background-color: rgba(0, 6, 15, 0.1);
		top: 0;
		right: -100%;
		width: 100%;
		height: 100%;
		-webkit-backdrop-filter: blur(96px);
		backdrop-filter: blur(96px);
		transition: 0.3s;
	}
}

.nav__list {
	display: flex;
	flex-direction: column;
	text-align: center;
	row-gap: 3rem;
	padding-top: 9rem;
}

.nav__link {
	/* text-transform: uppercase; */
	color: var(--title-color);
	font-size: var(--h2-font-size);
	font-weight: var(--font-medium);
	transition: 0.3s;
}

.nav__link:hover {
	color: var(--first-color);
}

.nav__close {
	font-size: 2rem;
	color: var(--white-color);
	position: absolute;
	top: 1rem;
	right: 1.15rem;
	cursor: pointer;
}

.download__link {
	font-size: var(--normal-font-size);
	padding: 1rem 2rem;
	background-color: var(--first-color);
	border-radius: 50px;
	color: var(--body-color);
}

.download__link:hover {
	background-color: var(--first-color-alt);
	color: var(--body-color);
}

/* Show menu */
.show-menu {
	right: 0;
}

/* Change background header */
.scroll-header {
	background-color: var(--body-color);
	box-shadow: 0 1px 4px hsla(0, 4%, 15%, 0.1);
}

/* Active link */
.active-link {
	color: var(--first-color);
	position: relative;
}

.active-link.download__link {
	color: var(--body-color);
	background-color: var(--first-color-alt);
}

/* ============== HOME SECECTION ============== */
.home {
	padding-bottom: 0;
	margin-bottom: 0;
}

.home__container {
	padding-top: 3rem;
	row-gap: 2.5rem;
}

.home__title,
.home__value-number {
	color: var(--title-color);
}

.home__title {
	font-size: var(--biggest-font-size);
	line-height: 1.3;
	margin-bottom: 0.9rem;
	text-transform: capitalize;
}

.home__description {
	color: var(--text-color);
	margin-bottom: 2rem;
}

.home-button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background-color: var(--first-color);
	color: var(--body-color);
	padding: 0.9rem 2rem;
	border-radius: 0.4rem 0.4rem 0.4rem 2rem;
	font-size: var(--normal-font-size);
	transition: 0.3s;
	font-family: var(--title-font);
	margin-bottom: 1.5rem;
}

.home-button:hover {
	background-color: var(--first-color-alt);
}

.home__value {
	display: flex;
	column-gap: 2.5rem;
	align-items: center;
}

.home__value-number {
	font-size: var(--h1-font-size);
	font-weight: var(--font-medium);
}

.home__value-number span {
	color: var(--first-color);
}

.home__value-description {
	display: flex;
	color: var(--text-color);
	font-size: var(--smaller-font-size);
}

.line-h {
	height: 50px;
	width: 2px;
	background-color: #a7abb4;
}

/* ================== ABOUT SECTION ==================== */
.about__data h2 {
	font-size: var(--h1-font-size);
}

.about__description {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
    color: #fff;
    background: #0f0f0f;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.about__description p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.about__description ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
    list-style-type: none;
}

.about__description li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.about__description li::before {
    content: "✓";
    color: #2ecc71;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.about__description p:last-child {
    margin-top: 2rem;
    font-style: italic;
    color: #666;
    text-align: right;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.about__images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 8px 24px hsla(0, 0%, 0%, 0.2);
}

.about__img-grid {
    display: grid;
    grid-template-columns: repeat(1, 5fr);
    gap: 3rem;
}

.about__img-small {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px hsla(0, 0%, 0%, 0.15);
    transition: transform 0.3s ease;
}

.about__img-small:hover {
    transform: translateY(-5px);
}

/* Responsive adjustment */
@media screen and (max-width: 767px) {
    .about__img-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about__img-small {
        height: 120px;
    }
}

.about__data-card {
	display: flex;
	column-gap: 1rem;
	margin-bottom: 4rem;
}

.about__card {
	background-color: var(--container-color);
	border-radius: 15px;
	padding: 1.2rem;
	position: relative;
	overflow: hidden;
}

.about__card img {
	border-radius: 15px;
	margin-bottom: 0.5rem;
}

.about__card-title {
	font-size: var(--small-font-size);
}

.about__card-desc {
	font-size: var(--smaller-font-size);
}

.about-card-icon {
	position: absolute;
	font-size: 1.5rem;
	color: var(--body-color);
	right: 0;
	bottom: 0;
	background-color: var(--first-color);
	padding: 0.4rem;
	border-radius: 15px 0 0 0;
	cursor: pointer;
	transition: 0.3s;
}

.about-card-icon:hover {
	background-color: var(--first-color-alt);
}

/* ============ BRANDS SECTION ================ */
.brands__img {
	width: 40px;
	opacity: 0.4;
	transition: 0.3s;
}

.brands__container {
	grid-template-columns: repeat(3, max-content);
	justify-content: center;
	align-items: center;
	gap: 4rem;
	padding-bottom: 2rem;
}

.brands__img:hover {
	opacity: 1;
}

/* =========== WHY SECTION ============= */
.why__container {
	background-color: var(--container-color);
	padding: 1.5rem;
}

.why__description {
	font-family: Berliana;
	font-size: var(--h1-font-size);
	color: var(--title-color);
}

.why__container span {
	color: var(--first-color);
}

/* ============= POPULAR SECTION ============== */
.popular {
	margin-top: -13rem;
	padding-top: 16rem;
	padding-bottom: 4rem;
	position: relative;
}

.popular-bg {
	position: absolute;
	height: 100%;
	top: 0;
	right: 50%;
	transform: translateX(50%);
	z-index: -1;
}

.popular__container h2 {
	text-align: center;
}

.popular__card {
	background-color: var(--container-color);
	border-radius: 25px;
	padding: 2rem 1.5rem;
	width: 238px;
	margin-bottom: 3.5rem;
}

.car-name {
	font-size: var(--h2-font-size);
}

.car-model {
	font-size: var(--small-font-size);
}

.car-img {
	height: 200px;
	transition: 0.3s;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0.8rem;
}

.car-img:hover {
	transform: translateX(15px);
}

.car__details {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.car__details span {
	font-size: var(--smaller-font-size);
	color: var(--title-color);
	margin-top: 0.5rem;
}

.speed {
	display: flex;
	justify-content: center;
	align-items: center;
}

.speed img {
	width: 17px;
	margin-right: 0.25rem;
}

.car-line {
	width: 1px;
	height: 12px;
	background-color: var(--text-color);
	margin-top: 0.5rem;
}

.car__btns {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-top: 1.5rem;
}

.buy-btn {
	background-color: var(--first-color);
	color: var(--body-color);
	padding: 0.4rem 1rem;
	border-radius: 50px;
	font-weight: var(--font-semi-bold);
	transition: 0.3s;
	margin-right: 0.8rem;
}

.buy-btn:hover {
	background-color: var(--first-color-alt);
}

.rent-btn {
	color: var(--title-color);
	font-weight: var(--font-semi-bold);
	transition: 0.3s;
	position: relative;
}

.rent-btn::before {
	content: "";
	position: absolute;
	bottom: -0.15rem;
	left: 0;
	width: 75%;
	height: 2px;
	background-color: var(--first-color);
	transition: 0.3s;
}

.rent-btn:hover::before {
	width: 100%;
	background-color: var(--first-color-alt);
}

.swiper-pagination {
	/* bottom: -1rem !important; */
}

.swiper-pagination-bullet {
	background-color: var(--container-color);
}

/* ============= NEWSLETTER SECTION ============== */
.newsletter__container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: var(--container-color);
	padding: 1.5rem 2rem 2rem 2rem;
}

.newsletter__description {
	margin-bottom: 1.5rem;
}

.email-input,
.button-input {
	border: none;
	outline: none;
	padding: 1rem;
}

.email-input {
	width: 60%;
	margin-right: -0.2rem;
	font-family: var(--text-font);
}

.button-input {
	font-family: var(--text-font);
	margin-left: -0.2rem;
	background-color: var(--first-color);
	color: var(--body-color);
	font-weight: var(--font-semi-bold);
	transition: 0.3s;
}

.button-input:hover {
	background-color: var(--first-color-alt);
}

/* ============ PRODUCT SECTION ================= */
.product__subtitle {
	font-size: var(--smaller-font-size);
	color: var(--first-color);
	text-align: center;
	display: block;
}

.products h2 {
	text-align: center;
}

.product__container {
	padding-top: 1rem;
}

.product__filters {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 1rem;
	margin-bottom: 3.5rem;
}

.product__item {
	width: 48px;
	height: 48px;
	border: none;
	padding: 0.75rem 2rem;
	background-color: var(--container-color);
	border-radius: 0.5rem;
	color: var(--title-color);
	font-weight: 500;
	font-family: var(--title-font);
	font-size: 1.1rem;
	transition: 0.3s;
	cursor: pointer;
	min-width: 120px;
}

.product__item img {
	width: 1.5rem;
}

.product__item span,
.product__item img {
	opacity: 0.3;
	transition: 0.3s;
}

.product__item:hover {
	background-color: var(--first-color);
	color: var(--body-color);
}

.product__item:hover span,
.product__item:hover img {
	opacity: 1;
}

.product__item:hover img {
	filter: invert(100%);
}

.product__content {
	grid-template-columns: 228px;
	row-gap: 2.5rem;
	justify-content: center;
}

.product__content .popular__card {
	margin-bottom: 0;
}

/* Active product */

.active-product {
	background-color: var(--first-color);
}

.active-product span {
	color: var(--body-color);
	opacity: 1;
}

.active-product img {
	opacity: 1;
	filter: invert(100%);
}

/* ============= DOWNLOAD SECTION =============== */
.app__container {
	background-color: var(--container-color);
	padding: 0 2rem 2rem 2rem;
}

.app__img {
	width: 70%;
	position: relative;
}

.app__data h2 {
	margin-bottom: 1.5rem;
}

.app__description {
	margin-bottom: 2rem;
}

.ios-btn a,
.android-btn a {
	padding: 0.7rem 1.6rem;
	color: var(--body-color);
	font-size: var(--small-font-size);
	font-weight: var(--font-medium);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	transition: 0.3s;
}

.ios-btn a {
	background-color: var(--first-color);
	border-radius: 50px;
	margin-bottom: 1rem;
}

.ios-btn a:hover {
	background-color: var(--first-color-alt);
}

.android-btn a {
	background-color: var(--title-color);
	border-radius: 50px;
}

.android-btn a:hover {
	background-color: var(--container-color);
	color: var(--title-color);
	border: 1px solid var(--title-color);
}

.ios-btn a img,
.android-btn a img {
	width: 30px;
	margin-right: 0.5rem;
}

/* ============= FOOTER SECTION ================== */
.footer {
	margin-top: 4rem;
}

.logo-info a {
	margin-bottom: 0.8rem;
}

.footer__title {
	margin-bottom: 1rem;
	font-size: var(--h3-font-size);
}

.footer__description {
	max-width: 250px;
}

.information ul li a,
.company ul li a {
	font-size: var(--normal-font-size);
	color: var(--text-color);
	transition: 0.3s;
	display: inline-block;
}

.information ul li a:hover,
.company ul li a:hover {
	color: var(--first-color);
	transform: translateX(5px);
}

.information ul li,
.company ul li {
	margin-bottom: 0.8rem;
}

.socials ul {
	display: flex;
	align-items: center;
}

.socials ul li a i {
	color: var(--title-color);
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid var(--text-color);
	border-radius: 50%;
	padding: 0.5rem;
	transition: 0.3s;
}

.socials ul li a i:hover {
	/* border: none; */
	background-color: var(--first-color);
	color: var(--body-color);
}

.socials ul li {
	margin-right: 0.5rem;
}

.footer-line {
	width: 100%;
	height: 1px;
	background-color: var(--container-color);
	margin: 4rem 0 1rem;
}

.copyright small {
	text-align: center;
	display: block;
}

.footer__contact {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.footer__contact li {
    margin-bottom: 0.5rem;
}

.footer__contact li a {
    color: var(--text-color);
    transition: color 0.3s;
}

.footer__contact li a:hover {
    color: var(--first-color);
}

/* ================= SCROLL BAR ================ */
::-webkit-scrollbar {
	width: 0.6rem;
	background-color: #161f2e;
	border-radius: 1rem;
}

::-webkit-scrollbar-thumb {
	background-color: #2a3e5b;
	border-radius: 1rem;
}

::-webkit-scrollbar-thumb:hover {
	background-color: #33496c;
}

/* ============ SCROLL UP ============== */
.scrollup {
	position: fixed;
	right: 1rem;
	bottom: -30%;
	background-color: #161f2e72;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	display: inline-flex;
	padding: 0.45rem;
	border-radius: 0.5rem;
	font-size: 1.15rem;
	color: var(--title-color);
	z-index: var(--z-tooltip);
	transition: 0.3s;
}

.scrollup:hover {
	transform: translateY(-0.25rem);
}

/* Show Scroll Up Button */
.show-scroll {
	bottom: 3rem;
}

/* Selection Color */
::-moz-selection {
	color: var(--body-color);
	background-color: var(--first-color);
}

::selection {
	color: var(--body-color);
	background-color: var(--first-color);
}

/* For Small Devices */
@media screen and (max-width: 350px) {
	.container {
		margin-left: 1rem;
		margin-right: 1rem;
	}

	.section {
		padding: 3.5rem 0 1rem;
	}
}

@media screen and (max-width: 320px) {
	.brands__container {
		gap: 2.5rem;
	}

	.why__description {
		font-size: var(--h2-font-size);
	}

	.popular {
		padding-top: 19rem;
	}

	.email-input,
	.button-input {
		width: 100%;
		margin: 0;
	}
}

/* For Medium Devices */
@media screen and (min-width: 576px) {
	.about__data-card {
		width: 300px;
	}

	.why__container {
		padding: 2.5rem;
	}

	.newsletter__container {
		background-color: var(--container-color);
		padding: 2rem 2.5rem 2.5rem 2.5rem;
	}

	.product__content {
		grid-template-columns: repeat(2, 228px);
		row-gap: 1.5rem;
		column-gap: 2rem;
	}

	.app__container {
		padding: 0 3rem 3rem 2rem;
	}

	.app__img {
		width: 50%;
	}

	.app__btns {
		display: grid;
		grid-template-columns: repeat(2, max-content);
		column-gap: 1rem;
		justify-items: center;
	}

	.footer__data {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* For Large Devices */
@media screen and (min-width: 767px) {
	.section {
		padding: 7rem 0 2rem;
	}

	.nav {
		height: calc(var(--header-height) + 1.5rem);
	}

	.nav__toggle,
	.nav__close {
		display: none;
	}

	.nav__list {
		flex-direction: row;
		column-gap: 3rem;
		padding-top: 0;
	}

	.nav__link {
		font-size: var(--normal-font-size);
	}

	.home__container,
	.about__container,
	.app__container {
		grid-template-columns: repeat(2, 1fr);
	}

	.home__title {
		font-size: 2.3rem;
	}

	.about__group {
		order: 1;
	}

	.brands__container {
		gap: 4rem 8rem;
	}

	.why__container {
		padding: 5rem;
	}

	.why__description {
		line-height: 1.8;
	}

	.popular {
		padding-top: 20rem;
	}

	.newsletter__container {
		padding-top: 4rem;
		padding-bottom: 5rem;
	}

	.newsletter__data {
		max-width: 500px;
	}

	.app__container {
		justify-content: center;
		align-items: center;
		padding-bottom: 0;
		padding-top: 2rem;
		margin-top: 2rem;
		position: relative;
	}

	/* .app__img {
		width: 90%;
		order: 1;
		margin-top: -8rem;
	} */

	.app__img {
		position: absolute;
		right: 3rem;
		top: -9.5rem;
		width: 220px;
	}

	.app__data {
		width: 350px;
	}

	.ios-btn a,
	.android-btn a {
		padding: 0.6rem 1.4rem;
	}

	.ios-btn a img,
	.android-btn a img {
		width: 20px;
	}
}

/* For Large Devices */
@media screen and (min-width: 1040px) {
	.container {
		margin-left: auto;
		margin-right: auto;
	}

	.home__title {
		font-size: 3.5rem;
		line-height: auto;
		margin-bottom: 1rem;
	}

	.home__description {
		margin-bottom: 3rem;
	}

	.home-button {
		margin-bottom: 1.5rem;
	}

	.home__img {
		position: absolute;
		top: 17%;
		right: 14%;
		width: 30%;
	}

	.about__img {
		width: 75%;
	}

	.about__container {
		justify-items: center;
		gap: 0;
	}

	.about__data-card {
		width: 400px;
	}

	.brands__container {
		grid-template-columns: repeat(6, max-content);
	}

	.brands__img {
		width: 50px;
	}

	.popular__container {
		width: 875px;
		padding-top: 3rem;
	}

	.popular__card {
		width: 258px;
		margin-bottom: 5rem;
	}

	.product__container {
		padding-bottom: 2.5rem;
	}

	.product__filters {
		column-gap: 2rem;
		margin-bottom: 4.5rem;
	}

	.product__item {
		width: 52px;
		height: 52px;
	}

	.product__item img {
		width: 2rem;
	}

	.product__content {
		grid-template-columns: repeat(3, 248px);
		/* column-gap: 3rem;
		row-gap: 3rem; */
		gap: 3rem;
	}

	/* .app__container {
		margin-top: 10rem;
	}

	.app__img {
		width: 70%;
		margin-top: -15rem;
	} */

	.app__container {
		padding: 3rem 0 2rem 5rem;
		margin-top: 11rem;
	}

	/* .app__img {
		width: 90%;
		order: 1;
		margin-top: -8rem;
	} */

	.app__img {
		position: absolute;
		right: 5rem;
		top: -16rem;
		width: 330px;
	}

	.app__data {
		width: 400px;
	}

	.ios-btn a,
	.android-btn a {
		padding: 0.7rem 1.6rem;
	}

	.ios-btn a img,
	.android-btn a img {
		width: 25px;
	}

	.footer__data {
		grid-template-columns: repeat(4, max-content);
		justify-content: space-between;
	}
}
 .about__description {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
    color: #fff;
    background: #0f0f0f;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  }

  .about__description p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
  }

  .about__description ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
    list-style-type: none;
  }

  .about__description li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
  }

  .about__description li::before {
    content: "✓";
    color: #2ecc71;
    font-weight: bold;
    position: absolute;
    left: 0;
  }

  .about__description p:last-child {
    margin-top: 2rem;
    font-style: italic;
    color: #666;
    text-align: right;
    border-top: 1px solid #eee;
    padding-top: 1rem;
  }

  @media (max-width: 768px) {
    .about__description {
      margin: 1rem;
      padding: 1.5rem;
    }
    
    .about__description p {
      font-size: 1rem;
    }
  }
 .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 60px;
      height: 60px;
      background-color: #25D366;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      z-index: 100;
      cursor: pointer;
      transition: transform 0.3s ease-in-out;
      animation: float 2s ease-in-out infinite;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
    }

    .whatsapp-float svg {
      width: 30px;
      height: 30px;
      fill: white;
    }

.product-detail__container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            padding: 5rem 0;
        }
        .product-detail__img img {
            max-width: 100%;
            height: auto;
            border-radius: 0.5rem;
        }
        .product-detail__data {
            padding: 1rem;
        }
        .product-detail__description {
            margin: 1rem 0;
            font-size: 1rem;
        }
        .product-detail__specs {
            list-style: disc;
            margin-left: 3rem;
        }
        .product-detail__specs li {
            margin-top: 1rem;
            margin-bottom: 1rem;
            font-size: 1rem;
        }
        .product-detail__btns {
            margin-top: 2rem;
        }
        .buy-btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background-color: #ffd700;
            color: #000;
            text-align: center;
            border-radius: 0.25rem;
            text-decoration: none;
            transition: background-color 0.3s ease;
            font-size: 1rem;
        }
        .buy-btn:hover {
            background-color: #5c9b0e;
        }
        @media (max-width: 768px) {
            .product-detail__container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 2rem 0;
            }
            .product-detail__img img {
                width: 100%;
                max-height: 300px;
                object-fit: cover;
            }
            .product-detail__data {
                padding: 0.5rem;
            }
            .product-detail__description {
                margin: 0.75rem 0;
                font-size: 0.95rem;
            }
            .product-detail__specs {
                margin-left: 1.5rem;
            }
            .product-detail__specs li {
                margin-top: 0.75rem;
                margin-bottom: 0.75rem;
                font-size: 0.95rem;
            }
            .product-detail__btns {
                margin-top: 1.5rem;
            }
            .buy-btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.95rem;
                width: 100%;
                box-sizing: border-box;
            }
        }
        @media (max-width: 480px) {
            .product-detail__container {
                gap: 1rem;
                padding: 1.5rem 0;
            }
            .product-detail__img img {
                max-height: 250px;
            }
            .product-detail__description {
                font-size: 0.9rem;
            }
            .product-detail__specs li {
                font-size: 0.9rem;
                margin-top: 0.5rem;
                margin-bottom: 0.5rem;
            }
            .buy-btn {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
            }
        }
    @keyframes float {
      0% { transform: translateY(0); }
      50% { transform: translateY(-4px); }
      100% { transform: translateY(0); }
    }