:root {
	--accent: #2d2d2d;
	--text: #2d2d2d;
	--muted: #666;
	--bg: #fafafa;
}


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}


body {
	font-family: 'Inter', sans-serif;
	background: var(--bg);
	color: var(--text);
	overflow-x: hidden;

	align-items: center;
	justify-items: center;
}


.root {
	width: 100%;
	height: 100%;
	max-width: 1700px;
	display: flex;
	flex-direction: column;

}













nav {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;

	margin: 0 auto;
	padding: 20px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;

	z-index: 100;
	background: rgba(255, 255, 255, 1);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}











.burger-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

.burger-btn span {
    width: 24px;
    height: 3px;
    background: var(--accent);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-btn:hover span {
    background: var(--muted);
}









.logo {
	font-family: 'Playfair Display', serif;
	font-size: 20px;
	letter-spacing: 2px;
	font-weight: 600;
	color: var(--text);
	cursor: pointer;
}

.logo.burger-menu {
	display: flex;
	justify-content: center;
	flex: 1;
}





.nav-btns {
	display: flex;
	gap: 20px;
	align-items: center;
}
.nav-btns.burger-menu {
	justify-content: end;
	flex: 1;
}

.nav-btns a {
	text-decoration: none;
	color: var(--text);
	font-size: 14px;
	display: flex;
	align-items: center;
	transition: all 0.3s ease;
	position: relative;
	cursor: pointer;
}

.nav-btns a svg {
	width: 22px;
	height: 22px;
}

.nav-btns a:hover {
	color: var(--accent);
	transform: translateY(-2px);
}

.nav-btns a span {
	position: absolute;
	top: -6px;
	right: -8px;
	background: var(--accent);
	color: #fff;
	font-size: 9px;
	font-weight: 600;
	/* padding: 2px 5px; */
	border-radius: 8px;
}
















.category-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    /* width: 320px; */
    height: 100%;
    background: #fff;
    z-index: 1000;
    transition: left 0.3s ease;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.category-sidebar.active {
    left: 0;
}






.category-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.category-sidebar-logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--accent);
	letter-spacing: 2px;
	opacity: 0;
	cursor: pointer;
}






.category-sidebar-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: var(--muted);
    transition: color 0.3s ease;
}

.category-sidebar-close:hover {
    color: var(--accent);
}







.category-sidebar-section {
    padding: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.category-sidebar-section:last-child {
    border-bottom: none;
}





.category-sidebar-section h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
    margin-bottom: 15px;
    font-weight: 600;
}


.category-sidebar-menu {
    display: none;
    list-style: none;
}

.category-sidebar-menu.active {
    display: block;
}




.category-sidebar-menu li {
    margin-bottom: 12px;
}


.category-sidebar-menu a {
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    display: block;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
    padding-left: 12px;
    margin-left: -12px;
	
}

.category-sidebar-menu a:hover,
.category-sidebar-menu a.active {
    color: var(--accent);
    border-left-color: var(--accent);
}





.category-sidebar-contact {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 8px;
}




.category-sidebar-gender-switch {
    display: flex;
    gap: 0;
    margin-top: 10px;
}

.category-sidebar-gender-btn {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #fff;
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.category-sidebar-gender-btn:first-child {
    border-radius: 8px 0 0 8px;
    border-right: none;
}

.category-sidebar-gender-btn:last-child {
    border-radius: 0 8px 8px 0;
}

.category-sidebar-gender-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.category-sidebar-gender-btn:hover:not(.active) {
    background: rgba(45, 45, 45, 0.05);
}









.category-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.category-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}




































.container {
	width: 100%;
	height: 100%;
	padding: 100px 60px 50px;
	display: none;
	flex-direction: column;
}









.page-title {
	font-family: 'Playfair Display', serif;
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 15px;
	letter-spacing: 0.5px;
}




.price-section {
	display: flex;
	align-items: baseline;
	gap: 5px;
	margin-bottom: 20px;
}

.current-price {
	font-size: 18px;
	font-weight: 500;
	color: var(--accent);
	letter-spacing: 0.5px;
}

.old-price {
	font-size: 14px;
	color: var(--muted);
	text-decoration: line-through;
}









.error-message {
	font-size: 13px;
	color: #ff4444;
	margin-top: 0px;
	display: none;
	margin-bottom: 15px;
}


















.loader-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin-top: 100px;
}

.loader {
	width: 50px;
	height: 50px;
	border: 2px solid rgba(0, 0, 0, 0.08);
	border-top-color: var(--accent, #2d2d2d);
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.loader-text {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--muted, #666);
	font-weight: 600;
	animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 0.5;
	}

	50% {
		opacity: 1;
	}
}
























footer {
	
	width: 100%;
	background: rgb(10, 10, 10);
	color: #fff;
	padding: 50px 0 0;
	/* margin-top: 300px; */
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-main {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 50px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-section h3 {
	font-family: 'Playfair Display', serif;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 20px;
	letter-spacing: 0.5px;
}






.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 13px;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	display: inline-block;
}

.footer-links a:hover {
	color: #fff;
	transform: translateX(3px);
}









.footer-contact p {
	font-size: 13px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 10px;
}

.footer-contact strong {
	color: #fff;
	display: block;
	margin-bottom: 5px;
}








.footer-bottom {
	padding: 25px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
}



.footer-bottom-left {
	display: flex;
	align-items: center;
	gap: 30px;
}



.footer-legal {
	display: flex;
	gap: 20px;
}

.footer-legal a {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-legal a:hover {
	color: #fff;
}






@media (max-width: 768px) {
	footer {
		padding: 40px 0 0;
		margin-top: 60px;
	}

	.footer-main {
		grid-template-columns: 1fr;
		gap: 30px;
		padding-bottom: 30px;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}

	.footer-bottom-left {
		flex-direction: column;
		gap: 10px;
	}

}





























@media (max-width: 768px) {
	nav {
		padding: 15px 25px;
	}

	.logo {
		font-size: 18px;
	}

	.container {
		padding: 70px 20px 40px;
	}

	.page-title {
		font-size: 24px;
	}




	.current-price {
		font-size: 14px;
	}

	.old-price {
		font-size: 10px;
	}
}





@media (max-width: 480px) {
    .logo.burger-menu {
        display: none;
    }

	.category-sidebar-logo {
		opacity: 1;
	}

}