.whiskeyMateImage {
	height: 200px;
	background: #000;
}

h1, h2 {
	color: #FB5607;
}

h3, h5 {
	color: #3A86FF;
}

.subtitle {
	color: #FFBE0B;
}

.whiskeyMateLinkColors .active {
	color: #fb5607 !important;
}

.whiskeyMateLinkColors a {
	color: #FFBE0B !important;
}

.nav-pills .nav-link.active {
	background-color: black;
}

.nav-pills .nav-link:hover {
	background-color: #2C2C2E;
}

.social-icon {
	width: 20px;
	height: 20px;
	margin-right: 5px;
}

.fab {
	font-size: 20px; /* Adjust size as needed */
	margin-right: 5px;
}

.snapchat-responsive {
	max-width: 100%;
	height: auto;
	overflow: hidden;
}

.snapchat-embed {
	max-width: 100%;
	width: 100%;
	height: auto;
}

@media (max-width: 1400px) {
	.snapchat-responsive {
		display: none;
	}
}

body { 
	background-color: #f8f9fa; 
}

.hidden { 
	display: none; 
}

#faqSearchInput { 
	margin-bottom: 20px; 
}

.faq-block {
	background: white;
	border-left: 5px solid #FFBE0B;
	padding: 15px;
	margin-bottom: 20px;
	box-shadow: 0 2px 5px rgba(0,0,0,.1);
}

ul, ol { 
	color: #555; 
}

li { 
	margin-bottom: 10px; 
}

#scrollTopBtn {
	padding: 10px 20px;
	font-size: 16px;
	background-color: #FB5607;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	opacity: 0.7;
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: none;
	z-index: 1000;
}

.faq-block:first-of-type {
	margin-top: 30px; /* Adjust this value as needed */
}

#scrollTopBtn:hover {
	opacity: 1;
}

.sticky-top {
	position: sticky;
	top: 0;
	z-index: 1020 !important; /* Keep this lower than modal and backdrop */
}

.modal-backdrop {
    z-index: 1040 !important; /* Make sure the backdrop is above the navbar */
}

.modal {
    z-index: 1050 !important; /* Ensure the modal is above the backdrop */
}

@media (min-width: 992px) {
    #nav-login {
        margin-left: auto;
    }
}

.whiskey-card {
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.whiskey-card:hover {
    transform: scale(1.05);
}

.whiskey-image {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

/* Center the image in the modal */
.modal-body img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

/* Styling for the modal content */
.modal-content {
    border-radius: 10px;
}

.modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.modal-header .btn-close {
    background: none;
    border: none;
}

.modal-title {
    font-size: 1.5rem;
    color: #343a40;
}

.modal-body {
    padding: 20px;
}

.modal-body h5 {
    font-size: 1.75rem;
    margin-top: 10px;
}

.modal-body h6 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #6c757d;
}

.modal-body p {
    margin-bottom: 10px;
}

.modal-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

#image-carousel {
    height: 125px;
    overflow: hidden; /* Ensures content outside the carousel is not visible */
}

#image-carousel .carousel-item img {
    height: 100%;
    width: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensure the image fits within the specified height */
}

.carousel-inner {
    display: flex;
}

.carousel-item {
    flex: 0 0 auto; /* Prevent the items from shrinking */
    width: 100px; /* Set a fixed width for each item */
}

.carousel-item img {
    width: 100px;
    height: 125px;
    object-fit: cover;
}

.whiskey-details .row > .col-md-6 {
    margin-bottom: 15px;
}

.whiskey-modal-image {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.collection-section {
    border: 2px solid #FB5607;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
}

.collection-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.collection-item {
    width: 300px;
    aspect-ratio: 16 / 9;
    background-color: black;
    overflow: hidden;
    display: inline-block;
    text-align: center;
    margin: 0 10px;
    position: relative;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.collection-item:hover {
    transform: scale(1.05);
}

.collection-item.active {
    outline: 4px solid #FFBE0B;
}

.collection-item p {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
}

.section-header {
	font-size: 1.5em;
	margin-bottom: 10px;
}

.disclaimer {
	background-color: #FFF3CD;
	border: 1px solid #FFEEBA;
	padding: 10px;
	border-radius: 5px;
	margin-bottom: 20px;
	text-align: center;
}

#nav-cart-container {
	display: flex;
	align-items: center;
	padding-right: 0.5rem;
}

#nav-cart-container .nav-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 0.5rem;
}

#nav-cart-container .badge {
	font-size: 0.65rem;
	min-width: 1.2rem;
	height: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
