/* Skeleton loading */
.skeleton {
	background-color: #e2e2e2;
	border-radius: 4px;
	position: relative;
	overflow: hidden;
}

.skeleton::after {
	content: "";
	position: absolute;
	top: 0;
	left: -150px;
	height: 100%;
	width: 150px;
	background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
	animation: loading 1.5s infinite;
}

@keyframes loading {
	0% { left: -150px; }
	100% { left: 100%; }
}

/* Card footer button */
.card-footer {
	background-color: transparent;
	border-top: none;
}

.btn-view {
	background-color: #0d6efd;
	color: #fff;
	transition: background-color 0.3s ease;
}

.btn-view:hover {
	background-color: #0b5ed7;
	color: #fff;
}

.btn-view i {
	margin-right: 5px;
}

/* Section title */
.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	position: relative;
}

.title-underline {
	width: 60px;
	height: 4px;
	background-color: #0d6efd;
	border-radius: 2px;
}

/* Header */
header {
	background-color: #fff;
	padding: 0px 0;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Slider */
.slider-container {
	position: relative;
	overflow: hidden;
}

.slider-container img {
	width: 100%;
	object-fit: cover;
}

.slider-caption {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #000;
	text-align: center;
	animation: slideUp 1s ease forwards;
	opacity: 0;
}

@keyframes slideUp {
	0% { opacity: 0; transform: translate(-50%, 20%); }
	100% { opacity: 1; transform: translate(-50%, -50%); }
}

.product-grid .card {
	margin-bottom: 20px;
}

/* Footer */
footer {
	background-color: #000;
	padding: 40px 0;
	color:white;
}

.page-breadcrumb {
	background-color: #000;
	color: #fff;
	padding: 40px 0;
	text-align: center;
}

.page-breadcrumb h1 {
	font-size: 2rem;
	margin: 0;
	font-weight: 600;
}

.page-breadcrumb p {
	font-size: 1rem;
	margin: 5px 0 0;
	color: #ccc;
}

.page-breadcrumb a {
	font-size: 1rem;
	margin: 5px 0 0;
	color: #fff;
}


.contact-info-box {
	background-color: #f8f9fa;
	padding: 20px;
	margin-bottom: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	text-align: center;
	font-size: 1.1rem;
	font-weight: 500;
	min-height:220px;
}
