.main-timeline-2 {
	position: relative;
}
.main-timeline-2 .card-img-top {
	height: 150px;
	object-fit: cover;
}
.main-timeline-2 .card {
	border-color: #5c0c0c;
}

.main-timeline-2::after {
	content: "";
	position: absolute;
	width: 3px;
	background-color: #5c0c0c;
	top: 0;
	bottom: 0;
	left: 50%;
	margin-left: -3px;
}

.timeline-2 {
	position: relative;
	background-color: inherit;
	width: 50%;
}

.timeline-2::after {
	content: "";
	position: absolute;
	width: 25px;
	height: 25px;
	right: -11px;
	background-color: #5c0c0c;
	top: 15px;
	border-radius: 50%;
	z-index: 1;
}

.left-2 {
	padding: 0px 40px 20px 0px;
	left: 0;
}

.right-2 {
	padding: 0px 0px 20px 40px;
	left: 50%;
}

.left-2::before {
	content: " ";
	position: absolute;
	top: 18px;
	z-index: 1;
	right: 30px;
	border: medium solid #5c0c0c;
	border-width: 10px 0 10px 10px;
	border-color: transparent transparent transparent #5c0c0c;
}

.right-2::before {
	content: " ";
	position: absolute;
	top: 18px;
	z-index: 1;
	left: 30px;
	border: medium solid #5c0c0c;
	border-width: 10px 10px 10px 0;
	border-color: transparent #5c0c0c transparent transparent;
}

.right-2::after {
	left: -14px;
}

@media screen and (max-width: 600px) {
	.main-timeline-2::after {
		left: 31px;
	}

	.timeline-2 {
		width: 100%;
		padding-left: 70px;
		padding-right: 25px;
	}

	.timeline-2::before {
		left: 60px;
		border: medium solid white;
		border-width: 10px 10px 10px 0;
		border-color: transparent white transparent transparent;
	}

	.left-2::after,
	.right-2::after {
		left: 18px;
	}

	.left-2::before {
		right: auto;
	}

	.right-2 {
		left: 0%;
	}
}
.smaller-btn .icon-wrap {
	width: 30px;
	height: 30px;
}
.different-color-btn {
	background: white;
	border: solid 1px #5c0c0c;

}

.underline-tabs .nav-tabs {
    border-bottom: 2px solid #e9ecef;
}

.underline-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    padding: 1rem 1.5rem;
    margin-bottom: -2px;
    font-weight: 500;
    color: #6c757d;
    transition: all 0.3s ease;
}

.underline-tabs .nav-link:hover {
    border-bottom-color: #a13535;
    color: #5c0c0c;
}

.underline-tabs .nav-link.active {
    border-bottom-color: #5c0c0c;
    color: #5c0c0c;
}

/* Content Animation */
.tab-pane.fade {
    transition: all 0.2s ease-out;
}

.tab-pane.fade.show {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.product-card {
    background-color: #fff;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #28a745;
}

.rating {
    color: #ffc107;
}
.product-image {
            max-height: 400px;
            object-fit: cover;
        }
        .thumbnail {
            width: 80px;
            height: 80px;
            object-fit: cover;
            cursor: pointer;
            opacity: 0.6;
            transition: opacity 0.3s ease;
        }
        .thumbnail:hover, .thumbnail.active {
            opacity: 1;
        }