:root {
	--primary-color: #0d1b2a;
	--accent-color: #ff9f1c;
	--bg-color: #ffffff;
	--card-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
	--card-radius: 12px;
}

body {
	font-family: 'Inter', sans-serif;
	background-color: #f8f9fa;
	color: var(--primary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	color: var(--primary-color);
}

.navbar {
	background-color: var(--bg-color);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.navbar-brand {
	font-weight: 800;
	font-size: 1.5rem;
	color: var(--primary-color) !important;
}

.navbar-brand span {
	color: var(--accent-color);
}

.nav-link {
	color: var(--primary-color);
	font-weight: 500;
	transition: color 0.3s;
}

.nav-link:hover {
	color: var(--accent-color);
}

.btn-primary {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
	color: #fff;
	font-weight: 600;
	border-radius: 8px;
	padding: 0.5rem 1.5rem;
	transition: all 0.3s;
}

.btn-primary:hover {
	background-color: #e08b15;
	border-color: #e08b15;
	transform: translateY(-2px);
}

.product-card {
	background: var(--bg-color);
	border: none;
	border-radius: var(--card-radius);
	box-shadow: var(--card-shadow);
	transition:
		transform 0.3s,
		box-shadow 0.3s;
	height: 100%;
	overflow: hidden;
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-img-wrapper {
	position: relative;
	padding-top: 75%;
	overflow: hidden;
	background-color: #f1f1f1;
}

.product-img-wrapper img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.product-card:hover .product-img-wrapper img {
	transform: scale(1.05);
}

.card-body {
	padding: 1.5rem;
}

.product-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.product-title a {
	text-decoration: none;
	color: var(--primary-color);
}

.product-rating {
	color: var(--accent-color);
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
	cursor: default;
}

.interactive-stars {
	cursor: pointer;
	display: inline-block;
}

.interactive-stars i {
	transition: color 0.2s;
}

.interactive-stars:hover i {
	color: #e0e0e0;
}

.interactive-stars i:hover,
.interactive-stars i:hover ~ i {
	color: var(--accent-color);
}

.star-rating-item {
	cursor: pointer;
	padding: 0 1px;
}

.star-rating-item:hover {
	transform: scale(1.2);
}

.product-price {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--primary-color);
}

.product-actions {
	margin-top: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.btn-outline-primary {
	color: var(--accent-color);
	border-color: var(--accent-color);
}

.btn-outline-primary:hover {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
	color: #fff;
}

.product-detail-image {
	border-radius: var(--card-radius);
	overflow: hidden;
	box-shadow: var(--card-shadow);
	background-color: #f1f1f1;
}

.product-detail-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.product-detail-price {
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--primary-color);
}

.product-detail-description {
	font-size: 1rem;
	color: #4b5563;
}

.hero-section {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 0 0 30px 30px;
	padding: 4rem 0;
	margin-bottom: 3rem;
	margin-top: -1.5rem;
	margin-left: -12px;
	margin-right: -12px;
}

.hero-content {
	color: white;
}

.hero-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.2);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.hero-title {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 1rem;
	color: white;
}

.hero-subtitle {
	font-size: 1.25rem;
	opacity: 0.9;
	margin-bottom: 2rem;
}

.hero-btn {
	background: white;
	color: #667eea;
	border: none;
	padding: 1rem 2rem;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s;
}

.hero-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	background: white;
	color: #764ba2;
}

.stats-card {
	background: white;
	border-radius: 16px;
	padding: 1.5rem;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s;
}

.stats-card:hover {
	transform: translateY(-5px);
}

.stats-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 1.5rem;
}

.section-header {
	margin-bottom: 2rem;
}

.section-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.section-subtitle {
	color: #6c757d;
}

.catalog-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 0 0 30px 30px;
	padding: 3rem 0;
	margin-bottom: 2rem;
	margin-top: -1.5rem;
	margin-left: -12px;
	margin-right: -12px;
	color: white;
}

.catalog-title {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
	color: white;
}

.catalog-subtitle {
	opacity: 0.9;
	font-size: 1.1rem;
}

.filter-card {
	background: white;
	border-radius: 16px;
	padding: 1.5rem;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	margin-bottom: 2rem;
}

.filter-label {
	font-weight: 600;
	font-size: 0.85rem;
	color: #6c757d;
	margin-bottom: 0.5rem;
}

.category-btn {
	padding: 0.5rem 1rem;
	border-radius: 50px;
	border: 2px solid #e9ecef;
	background: white;
	color: #495057;
	font-weight: 500;
	transition: all 0.3s;
	margin: 0.25rem;
}

.category-btn:hover {
	border-color: #667eea;
	color: #667eea;
}

.category-btn.active {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-color: transparent;
	color: white;
}

.results-badge {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-weight: 600;
}

.product-hero {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 0 0 30px 30px;
	padding: 2rem 0;
	margin-bottom: 2rem;
	margin-top: -1.5rem;
	margin-left: -12px;
	margin-right: -12px;
}

.breadcrumb-item a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
}

.breadcrumb-item.active {
	color: white;
}

.breadcrumb-divider {
	color: rgba(255, 255, 255, 0.5);
}

.product-image-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.product-image-card img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

.product-info-card {
	background: white;
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	height: 100%;
}

.product-category-badge {
	display: inline-block;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 0.4rem 1rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

.product-detail-title {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 1rem;
}

.rating-box {
	background: #f8f9fa;
	border-radius: 12px;
	padding: 1rem;
	margin-bottom: 1.5rem;
}

.rating-box .interactive-stars {
	font-size: 1.5rem;
}

.rating-stats {
	display: flex;
	gap: 1.5rem;
	margin-top: 0.5rem;
}

.rating-stat {
	text-align: center;
}

.rating-stat-value {
	font-size: 1.25rem;
	font-weight: 700;
	color: #667eea;
}

.rating-stat-label {
	font-size: 0.75rem;
	color: #6c757d;
}

.price-box {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 16px;
	padding: 1.5rem;
	color: white;
	margin-bottom: 1.5rem;
}

.price-value {
	font-size: 2.5rem;
	font-weight: 800;
}

.back-btn {
	display: inline-flex;
	align-items: center;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	background: #f8f9fa;
	color: #495057;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s;
}

.back-btn:hover {
	background: #e9ecef;
	color: #212529;
	transform: translateX(-5px);
}

.hero-feature {
	background: rgba(255, 255, 255, 0.15);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-size: 0.9rem;
	color: white;
}

.hero-btn-outline {
	background: transparent;
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.5);
	padding: 1rem 2rem;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s;
}

.hero-btn-outline:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: white;
	color: white;
}

.hero-illustration {
	position: relative;
	height: 300px;
}

.hero-main-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 8rem;
	color: rgba(255, 255, 255, 0.15);
}

.hero-card {
	position: absolute;
	background: white;
	padding: 1rem 1.5rem;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 600;
	animation: float 3s ease-in-out infinite;
}

.hero-card-1 {
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}

.hero-card-2 {
	top: 50%;
	right: 5%;
	animation-delay: 1s;
}

.hero-card-3 {
	bottom: 15%;
	left: 20%;
	animation-delay: 2s;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.feature-box {
	background: white;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	position: relative;
	transition: transform 0.3s;
}

.feature-box:hover {
	transform: translateY(-5px);
}

.feature-number {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 30px;
	height: 30px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.9rem;
}

.feature-icon-box {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	color: white;
	font-size: 1.75rem;
}

.info-banner {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 16px;
	padding: 2rem;
	color: white;
}

.category-card {
	display: block;
	background: white;
	border-radius: 16px;
	padding: 1.5rem;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s;
	color: inherit;
}

.category-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.category-icon {
	width: 60px;
	height: 60px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	font-size: 1.5rem;
}
