/* ==============================
   GOOGLE FONTS
   ============================== */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Lora:wght@400;700&family=Roboto:wght@400;500&family=Rubik+Dirt&family=Poppins:wght@300;400;500;600&display=swap");

/* ==============================
   ROOT VARIABLES
   ============================== */
:root {
	--primary-color: #d77b2c;
	--secondary-color: #484872;
	--text-color: #333;
	--bg-color: #f8f9fa;
	--nav-bg: rgba(255,255,255,0.95);
	--transition: all .3s ease;
	--ff-main: "Roboto", sans-serif;
	--ff-title: "Montserrat", sans-serif;
	--ff-fancy: "Rubik Dirt", cursive;
}

/* ==============================
   GLOBAL RESET
   ============================== */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}
html, body {
	height: 100%;
	margin: 0;
}

body {
	display: flex;
	flex-direction: column;
}
.main-content {
	flex: 1;
}

.footer {
	margin-top: 0;
}
body {
	font-family: var(--ff-main);
	background: var(--bg-color);
	color: var(--text-color);
	min-height: 100vh;
	padding-top: 70px;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

/* ==============================
   NAVBAR
   ============================== */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 70px;
	background: var(--nav-bg);
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 40px;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0,0,0,.1);
}

/* Logo */
.logo-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--ff-fancy);
	font-size: 1.2rem;
	letter-spacing: 2px;
}

/* Links */
.nav-links {
	display: flex;
	align-items: center;
	gap: 10px;
}

	.nav-links li a {
		display: flex;
		align-items: center;
		gap: 8px;
		padding: 6px 14px;
		border-radius: 20px;
		font-family: var(--ff-title);
		font-size: .95rem;
		transition: var(--transition);
		white-space: nowrap;
	}

		.nav-links li a:hover,
		.nav-links li a.active {
			background: var(--primary-color);
			color: #fff;
			transform: scale(1.05);
		}

/* Rounded border hover */
.cir_border {
	border: 2px solid transparent;
}

	.cir_border:hover {
		border-color: var(--primary-color);
	}

/* Language Select */
.lang-item select.language-select {
	padding: 6px 14px;
	border-radius: 20px;
	border: 2px solid transparent;
	font-family: var(--ff-title);
	cursor: pointer;
	transition: var(--transition);
}

	.lang-item select.language-select:hover {
		border-color: var(--primary-color);
	}

/* Mobile button */
.menu-btn {
	display: none;
	width: 38px;
	cursor: pointer;
}

/* ==============================
   MAIN CONTENT
   ============================== */
main.container {
	max-width: 1200px;
	margin: auto;
	padding: 30px 15px;
}

/* ==============================
   SECTIONS
   ============================== */
section {
	margin: 80px auto;
	width: 90%;
}

.title {
	text-align: center;
	font-family: var(--ff-title);
	font-size: clamp(1.6rem, 4vw, 2.5rem);
	margin-bottom: 40px;
}

/* ==============================
   CARDS
   ============================== */
.row {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 6px 16px rgba(0,0,0,.08);
	transition: var(--transition);
	overflow: hidden;
}

	.card:hover {
		transform: translateY(-8px);
	}

/* ==============================
   BUTTON
   ============================== */
.ctn {
	display: inline-block;
	padding: 12px 40px;
	border-radius: 30px;
	background: var(--primary-color);
	color: #fff;
	font-family: var(--ff-title);
	font-weight: 600;
	transition: var(--transition);
}

	.ctn:hover {
		background: #fff;
		color: var(--primary-color);
		box-shadow: 0 4px 14px rgba(0,0,0,.15);
	}

/* ==============================
   FOOTER
   ============================== */
.footer {
	background: #fff;
	border-top: 2px solid var(--primary-color);
	box-shadow: 0 -4px 12px rgba(0,0,0,.08);
	margin-top: auto;
}

.footer-content {
	max-width: 1200px;
	margin: auto;
	padding: 30px 20px;
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.footer-section {
	flex: 1;
	min-width: 250px;
}

	.footer-section h3 {
		color: var(--primary-color);
		font-family: var(--ff-title);
		margin-bottom: 15px;
	}

.footer-links {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 8px;
}

	.footer-links a {
		font-size: .9rem;
		color: #666;
		transition: var(--transition);
	}

		.footer-links a:hover {
			color: var(--primary-color);
			transform: translateX(4px);
		}

.social-icons {
	display: flex;
	gap: 12px;
	margin-top: 15px;
}

	.social-icons a {
		width: 38px;
		height: 38px;
		border-radius: 50%;
		background: #f1f1f1;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: var(--transition);
	}

		.social-icons a:hover {
			background: var(--primary-color);
			color: #fff;
			transform: translateY(-3px);
		}

.footer-bottom {
	text-align: center;
	padding: 12px 0;
	background: #f8f9fa;
	border-top: 1px solid #eee;
	font-size: .85rem;
}

/* ==============================
   RTL SUPPORT
   ============================== */
html[dir="rtl"] .footer-links a:hover {
	transform: translateX(-4px);
}

/* ==============================
   MOBILE
   ============================== */
@media (max-width: 992px) {
	.menu-btn {
		display: block;
	}

	.nav-links {
		position: fixed;
		top: 70px;
		right: 0;
		width: 280px;
		height: calc(100vh - 70px);
		background: rgba(255,255,255,.98);
		flex-direction: column;
		padding-top: 40px;
		transform: translateX(100%);
		transition: .4s ease;
	}

		.nav-links.mobile-menu {
			transform: translateX(0);
		}

		.nav-links li a {
			width: 85%;
			justify-content: center;
		}
}

@media (max-width: 576px) {
	.navbar {
		padding: 0 20px;
	}

	.footer-links {
		grid-template-columns: 1fr;
	}
}
.hero-section {
	height: 80vh;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	position: relative;
}

	.hero-section .hero-content h1 {
		font-size: 3rem;
		font-weight: bold;
	}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.product-card {
	background: #fff;
	padding: 15px;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0,0,0,.1);
	text-align: center;
}
