/* Common Styling for Both Sidebars */
.offcanvas, .offcanvas-right {
    position: fixed;
    top: 0;
    width: 300px;
    height: 100%;
    z-index: 1050;
    background-color: #f7f9fc; /* Soft, modern background color */
    color: #333; /* Dark text color for contrast */
    transition: transform 0.3s ease-in-out;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    border-radius: 0 10px 10px 0; /* Rounded corners for left sidebar */
}

.offcanvas-right {
    right: 0;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1); /* Shadow for right sidebar */
    border-radius: 10px 0 0 10px; /* Rounded corners for right sidebar */
}

.offcanvas {
    left: 0;
    transform: translateX(-100%);
    border-radius: 0 10px 10px 0; /* Rounded top corners */
}

.offcanvas-right {
    height: 100%;
    transform: translateX(100%);
    border-radius: 10px 0 0 10px; /* Rounded top corners */
}

.offcanvas.show, .offcanvas-right.show {
    transform: translateX(0);
}

/* Link Styling */
.offcanvas a, .offcanvas-right a {
    color: #181a1d; /* Accent color for links */
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.offcanvas a:hover, .offcanvas-right a:hover {
    color: #4c92dd; /* Darker accent on hover */
}

/* Header Styling */
.offcanvas-header, .offcanvas-right-header {
    padding: 15px;
    background-color: #e9ecef; /* Light gray header background */
    border-bottom: 1px solid #ddd; /* Subtle border */
    border-radius: 0 10px 0 0; /* Rounded top corners */
}

/* Body Styling */
.offcanvas-body, .offcanvas-right-body {
    padding: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.offcanvas-content {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 60px; /* Ensure content doesn’t overlap with the footer */
}

/* Footer Styling */
.offcanvas-footer {
    background-color: #f8f9fa; /* Light background color */
    border-top: 1px solid #ddd; /* Subtle border on top */
    padding: 10px;
    position: sticky;
    bottom: 0;
    width: 100%;
}

/* Optional: Customize the scrollbar */
.offcanvas::-webkit-scrollbar, .offcanvas-right::-webkit-scrollbar {
    width: 8px;
}

.offcanvas::-webkit-scrollbar-thumb, .offcanvas-right::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
}

.offcanvas::-webkit-scrollbar-thumb:hover, .offcanvas-right::-webkit-scrollbar-thumb:hover {
    background-color: #999;
}

.nav-link.active {
    border-bottom: 2px solid #0000FF; /* Change color as needed */
}

.catalog-container {
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.catalog-title {
    font-size: 1rem;
    /* font-weight: bold; */
    /* margin-bottom: 0.5rem; */
}
.catalog-description {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.catalog-button {
    border: 2px solid white;
    color: white;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
}

.image-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.image-container img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.1);
}

.image-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.large-image {
    padding: 15px 0;
}

.section-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    border-bottom: 2.5px solid #e5e5e5;
}

.section-divider::before {
    margin-right: 10px;
}

.section-divider::after {
    margin-left: 10px;
}

.section-divider h2 {
    font-weight: bold;
    color: #6c757d;
    margin: 0;
}

.product-name {
    cursor: default;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.5); /* Slightly darker on hover */
}

#product-breadcumb-canvas {
    height: 120px;
}

.main-image {
    width: 100%;
    height: auto;
}

.thumbnail-image {
    max-height: 120px;
    object-fit: cover;
    opacity: 0.6;
    cursor: pointer;
}

.thumbnail-image.active {
    opacity: 1;
}

.thumbnails-container {
    margin-top: 15px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    display: flex;
    justify-content: flex-start; /* Align thumbnails to start */
}

.thumbnails {
    display: flex;
    min-width: 400px; /* Ensures it accommodates only 4 thumbnails */
}

.thumbnails .thumbnail-item {
    flex: 0 0 25%; /* 25% of the container width per thumbnail */
    padding-right: 5px;
}

.thumbnails::-webkit-scrollbar {
    height: 8px;
}

.thumbnails::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.thumbnails::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

.accordion .card {
	background: none;
	border: solid black 1px 0.5;
    border-width: 1px 0;
}
.accordion .card .card-header {
	background: none;
	border: none;
	padding: .4rem 1rem;
	font-family: "Nunito", sans-serif;
}
.accordion .card-header h2 span {
	float: left;
	margin-top: 10px;
}
.accordion .card-header .btn {
	color: #2f2f31;
	font-size: 1.04rem;
	text-align: left;
	position: relative;
	font-weight: 500;
	padding-left: 2rem;
}
.accordion .card-header i {
	font-size: 1.2rem;
	font-weight: bold;
	position: absolute;
	left: 0;
	top: 9px;
}
.accordion .card-header .btn:hover {
	color: #ff8300;
}
.accordion .card-body {
	color: #324353;
	padding: 0.5rem 3rem;
}
.accordion .highlight .btn {
	color: #74bd30;
}
.accordion .highlight i {
	transform: rotate(180deg);
}

@media (min-width: 576px) {

}

@media (min-width: 768px) {
    .large-image {
        padding: 0;
    }
}

@media (min-width: 992px) {
    #product-breadcumb-canvas {
        height: 80px;
    }

    .product-name, .product-price {
        cursor: default;
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .image-container {
        margin-bottom: 15px;
        padding: 0 15px;
    }
}

@media (min-width: 1200px) {

}
