body {
	font-family: 'Montserrat', sans-serif;
}
.submenu-desktop, #mobile-menu-panel, .submenu-mobile, #filter-modal {
	transition: all 0.3s ease-in-out;
}
.product-card .swiper-pagination-bullet-active {
	background-color: #002FA7;
}
.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-in-out;
}
.main-product-slider, .size-chart-slider {
	position: relative;
	overflow: hidden;
}
.swiper-button-next, .swiper-button-prev {
	color: #002FA7;
	background-color: rgba(255, 255, 255, 0.7);
	width: 40px;
	height: 40px;
	border-radius: 50%;
}
.swiper-button-next::after, .swiper-button-prev::after {
	font-size: 20px;
}
.swiper-pagination-bullet-active {
	background-color: #002FA7;
}
.loader {
	border: 4px solid #f3f3f3;
	border-top: 4px solid #002FA7;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 1s linear infinite;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
.submenu-mobile {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-in-out;
}
#page-loader {
	transition: opacity 0.5s ease-in-out;
}
.loader-animation {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
}
.loader-animation .bar {
	width: 8px;
	height: 100%;
	margin: 0 4px;
	background-color: #002FA7;
	border-radius: 4px;
	animation: bounce 1.2s infinite ease-in-out;
}
.loader-animation .bar:nth-child(2) { animation-delay: -1.1s; }
.loader-animation .bar:nth-child(3) { animation-delay: -1.0s; }
.loader-animation .bar:nth-child(4) { animation-delay: -0.9s; }
.loader-animation .bar:nth-child(5) { animation-delay: -0.8s; }
@keyframes bounce {
	0%, 40%, 100% {
		transform: scaleY(0.4);
	}
	20% {
		transform: scaleY(1.0);
	}
}
.swiper-container {
	width: 100%;
	height: 100%;
}
.full-page-slide {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	text-align: center;
	color: white;
	position: relative;
	padding: 4rem 1rem;
}
.full-page-slide::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.slide-content {
	position: relative;
	z-index: 10;
}
.size-tab-btn.active {
	border-bottom-color: #002FA7;
	font-weight: 700;
}
.validation-item.valid {
	color: #16a34a;
}
.validation-item.invalid {
	color: #dc2626;
}
.account-nav-link.active {
	background-color: #002FA7;
	color: white;
}
.timeline-item.completed .timeline-icon {
	background-color: #002FA7;
	color: white;
}
.timeline-item.completed .timeline-line {
	background-color: #002FA7;
}
.bg-shapes {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	overflow: hidden;
}
.shape {
	position: absolute;
	border-radius: 50%;
	background-color: rgba(0, 47, 167, 0.1);
	animation: float 20s infinite ease-in-out;
}
.shape1 { width: 200px; height: 200px; top: 10%; left: 15%; animation-duration: 25s; }
.shape2 { width: 100px; height: 100px; top: 20%; left: 80%; animation-duration: 18s; }
.shape3 { width: 150px; height: 150px; top: 70%; left: 5%; animation-duration: 22s; }
.shape4 { width: 250px; height: 250px; top: 60%; left: 70%; animation-duration: 30s; }

@keyframes float {
	0% { transform: translateY(0px) rotate(0deg); }
	50% { transform: translateY(-30px) rotate(180deg); }
	100% { transform: translateY(0px) rotate(360deg); }
}

.text-404 {
	font-size: 10rem;
	font-weight: 900;
	line-height: 1;
	animation: text-pop 1.5s ease-out;
}
@media (min-width: 768px) {
	.text-404 {
		font-size: 15rem;
	}
}
@keyframes text-pop {
	0% { transform: scale(0.5); opacity: 0; }
	100% { transform: scale(1); opacity: 1; }
}
.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}
#feedback-modal {
	transition: opacity 0.3s ease, visibility 0.3s ease;
}