.card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 30px;
	width: 100%;
	box-shadow: 0 2px 12px rgba(40, 29, 23, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	height: 100%;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	flex-direction: row;
	gap: 25px;
	overflow: hidden;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 2px 20px rgba(37, 29, 24, 0.14);
}

.card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #fe7949, #edae67);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.card:hover::after {
    transform: translateY(0);
}

.image-container {
	width: 120px;
	height: 120px;
	border-radius: 15px;
	overflow: hidden;
	background: linear-gradient(45deg, #8B4513, #D2691E);
	flex-shrink: 0;
	position: relative;
}

.image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.title {
	font-size: 24px;
	font-weight: 500;
	color: #2c3e50;
	margin-bottom: 5px;
}

.info-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #555;
	font-size: 16px;
}

.info-icon {
	width: 20px;
	height: 20px;
	color: #e74c3c;
}

.vr-button {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #ff6b35, #f7931e);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
	transition: all 0.3s ease;
	cursor: pointer;
}

.vr-button:hover {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 12px 25px rgba(255, 107, 53, 0.4);
}

.vr-icon {
	width: 30px;
	height: 30px;
	color: white;
}

.vr-text {
	position: absolute;
	top: -8px;
	right: -8px;
	background: #a34eff;
	color: white;
	font-size: 10px;
	font-weight: bold;
	padding: 2px 6px;
	border-radius: 8px;
	border: 2px solid white;
	line-height: 17px;
	animation: gentleGlow 2.5s ease-in-out infinite;
}

@keyframes gentleGlow {
	0% {
		background: #a34eff;
		box-shadow: 0 0 5px rgba(77, 166, 255, 0.3);
	}

	50% {
		background: #00bcd4;
		box-shadow: 0 0 12px rgba(0, 188, 212, 0.5);
	}

	100% {
		background: #a34eff;
		box-shadow: 0 0 5px rgba(77, 166, 255, 0.3);
	}
}

@media (max-width: 768px) {
	.title{
		font-size: 1.25rem;
	}
}

@media (max-width: 600px) {
	.card {
		flex-direction: column;
		padding: 25px 20px;
	}

	.title{
		text-align: center;
		font-size: 1.3rem;
	}

	.vr-button {
		position: relative;
		top: 0;
		right: 0;
		margin-top: 20px;
	}

	.image-container {
		width: 100%;
        height: 100%;
        aspect-ratio: 4 / 3;
		overflow: hidden;
	}
}

.vr-button svg {
	fill: #fff;
	padding: 10px;
	padding-top: 20px;
	height: fit-content;
	width: fit-content;
}
.card h2.title a:hover{
	color: var(--clr-theme-1);
}

.bd-product__result h4 {
    color: var(--clr-theme-1);
    font-weight: 500;
}

.bd-basic__pagination ul li{
	color:var(--clr-theme-1)
}

.bd-basic__pagination ul li a {
	border: 2px solid #f9f0e8;
	color: var(--clr-theme-1);
}

.bd-basic__pagination ul li a.current {
    border-color:var(--clr-theme-2);
    color: #f9f0e8;
}

.bd-basic__pagination ul li a i {
	color: var(--clr-theme-1);
}

.bd-basic__pagination ul li a:hover {
	background-color: #f9f0e8;
	color: #db590082;
	border-color: #db590082;
}

.bd-basic__pagination ul li a:hover i{
    color: #db590082;
}

@media (992px<=width<= 1199px) {
	.title {
		width: 190px;
	}
}

@media (width<= 992px) {
    .bd-basic__pagination ul {
        justify-content: center;
    }
}

@media (width<= 600px) {
	.card{
		height: auto;
	}
}

@media (width<= 576px) {
    .bd-basic__pagination ul {
        gap: 8px;
    }
}

@media (width<= 425px) {
    .bd-basic__pagination ul li a,
    .bd-basic__pagination ul li span {
        width: 40px;
        height: 40px;
    }
}

@media (width<= 358px) {
    .bd-basic__pagination ul {
        gap: 6px;
    }
    .bd-basic__pagination ul li a,
    .bd-basic__pagination ul li span {
        width: 36px;
        height: 36px;
    }
}