/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/
.store-details {
    background-color: #fff;
    padding-left:12px;
    padding-right:12px;
}

.pac-container {
    z-index: 9999999999 !important;
    filter: none;
    margin-top: 10px;
    padding: 10px;
    border-radius: 8px !important;
    font-family: "Poppins", Helvetica, sans-serif;
    color: #333;
    background-color: #fff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    max-width: 500px; /* Maximum width for dropdown */
    width: 100%;
    border: 1px solid #ddd; /* Light border around the dropdown */
}



/* Styling for individual dropdown items */
.pac-item {
    padding: 12px 16px; /* More padding for each item */
    margin-bottom: 5px;
    font-size: 14px; /* Slightly smaller font for a clean look */
    background-color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover effect for dropdown items */
.pac-item:hover {
    background-color: #f1f1f1;
}

/* Styling for the query input */
.pac-item-query {
    color: #444;
    font-weight: bold;
}


  .loading-spinner {
    width: 50px; /* Adjust as needed */
    height: 50px; /* Adjust as needed */
    background: url('/img/cannaverse-symbol.png') no-repeat center center;
    background-size: contain;
    animation: spin 1s linear infinite;
    margin: auto;
}

/* Loading Overlay */
.loading-overlay-showing {
	overflow: hidden;
}

.loading-overlay-showing > .loading-overlay {
	opacity: 1;
	visibility: visible;
}

.loading-overlay {
	transition: visibility 0s ease-in-out 0.5s, opacity 0.5s ease-in-out;
	bottom: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	right: 0;
	top: 0;
	visibility: hidden;
	background: #FFF;
}

body > .loading-overlay {
	position: fixed;
	z-index: 999999;
}

/* Bounce Loading */
.bounce-loader {
	transition: all 0.2;
	margin: -9px 0 0 -35px;
	text-align: center;
	width: 70px;
	height: 20px;
	line-height: 20px;
	left: 50%;
	position: absolute;
	top: 50%;
	z-index: 10000;
}

.bounce-loader .bounce1,
.bounce-loader .bounce2,
.bounce-loader .bounce3 {
	animation: 1.4s ease-in-out 0s normal both infinite running bouncedelay;
	background-color: #0EA47A;
	border-radius: 100%;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
	display: inline-block;
	height: 18px;
	width: 18px;
}

.bounce-loader .bounce1 {
	animation-delay: -0.32s;
}

.bounce-loader .bounce2 {
	animation-delay: -0.16s;
}

.loader-text {
    position: absolute;
    top: calc(50% + 30px); /* Move it below the loader */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: max-content;
}

@keyframes bouncedelay {
	0%, 80%, 100% {
		transform: scale(0);
	}

	40% {
		transform: scale(1);
	}
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.attending-tile{
    position: relative; 
    background-color: #563D7C;
    color: #fff!important;
    font-weight: 500;
    border-radius: 3px;
    padding: 6px 8px 4px 8px;
    line-height: 1;
    font-size: 12px!important;
}

.truncate-text{
    display: -webkit-box;
    -webkit-line-clamp: 1;  /* Limit to 1 line */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 20px;
    width: 100%;
}

.product-card:hover {
	-webkit-box-shadow: 0px 22px 24px 0px rgba(46, 51, 51, 0.1);
	-moz-box-shadow: 0px 22px 24px 0px rgba(46, 51, 51, 0.1);
	box-shadow: 0px 22px 24px 0px rgba(46, 51, 51, 0.1);
  }
  .product-card:hover h3 {
	color: #0EA47A;
  }

.product-image {
    flex-shrink: 0;
    width: 100%;
    height: 150px; /* Adjust height as needed */
    overflow: hidden;
    border-radius: 8px 0 0 8px; /* Rounded corners for left side if needed */
    background-color: #fff; /* Optional: Adds a background if images are different sizes */
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensures the whole image fits without cropping */
}

.product-info {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}



.productSaleBanner {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #28a745;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 1;
}





.product-name-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-description {
	color: #777;
    margin-bottom: 10px;
    font-weight: normal;
    font-size: 13px;
    font-size: 0.8125rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-weight: 700;
    color: #333;
}







.productOutOfStockBanner {
    position: absolute;
    top: 0;
    right: 0;
    background-color: red;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px;
    z-index: 10; /* Ensure it stays above other content */
}

.indicaPill{
	color: #444;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    background-color: #c3cbe3;
    font-weight: 600;
    padding: 3px 10px;
}

.sativaPill{
	color: #444;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    background-color: #FBE1E1;
    font-weight: 600;
    padding: 3px 10px;
}

.hybridPill{
	color: #444;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    background-color: #e4f9bd;
    font-weight: 600;
    padding: 3px 10px;
    font-size: 12px;
}

.adaptogenPill {
    color: #444;
    background-color: #d1f2eb; /* Soft teal */
    border-radius: 20px;
    font-weight: 600;
    padding: 3px 10px;
    font-size: 12px;
}

.mushroomPill {
    color: #444;
    background-color: #fcefe3; /* Light mushroom beige */
    border-radius: 20px;
    font-weight: 600;
    padding: 3px 10px;
    font-size: 12px;
}

.botanicalPill {
    color: #444;
    background-color: #e8daf6; /* Light lavender/green blend */
    border-radius: 20px;
    font-weight: 600;
    padding: 3px 10px;
    font-size: 12px;
}


.testResultsPill{
	color: #444;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    background-color: #d4ebe5;
    font-weight: 600;
    padding: 3px 10px;
    font-size: 12px;
}



.effectsPill{
	color: #444;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    background-color: #dbc3e3;
    font-size: 12px;
    padding: 3px 10px;
}

.helpsWithPill{
	color: #444;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    background-color: #B0E0E6;
   
  font-size: 12px;
    padding: 3px 10px;
}

.categoryPill{
	color: #444;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
    background-color: #D4ECDD;
   margin-right: 10px;
  font-size: 12px;
    padding: 3px 10px;
}

.category-options {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px; /* Adjust as needed */
	font-weight: 500;
}

.listing-detail-hours {
   
   
    border-radius: 5px; /* Rounded corners */
    
}

.listing-detail-hours h5 {
    margin-bottom: 15px; /* Spacing below the heading */
    font-size: 1.25rem; /* Font size for the heading */
    font-weight: 500; /* Bold font weight */
    color: #333; /* Darker color for better visibility */
}

.listing-day {
    padding: 10px 0; /* Padding for each day */
    border-bottom: 1px solid #e0e0e0; /* Light border at the bottom */
}

.listing-day:last-child {
    border-bottom: none; /* Remove border from the last item */
}

.day {
    font-weight: bold; /* Bold font for the day */
    color: #555; /* Slightly lighter color for the day text */
    flex: 1; /* Allow the day span to take up space */
}

.bottom-inner {
    display: flex; /* Use flexbox to align the items */
    align-items: center; /* Center the items vertically */
}

.time-items {
    font-size: 0.85rem; /* Font size for the opening hours */
    color: #333; /* Color for the opening hours */
}

.close-text {
    font-size: 0.85rem; /* Font size for closed text */
    color: #dc3545; /* Bootstrap's danger color for closed text */
    font-weight: bold; /* Bold font for emphasis */
}

/* Optional: Adding some responsive design */
@media (max-width: 576px) {
    .listing-day {
        flex-direction: column; /* Stack items vertically on small screens */
        align-items: flex-start; /* Align to start */
    }
    .bottom-inner {
        justify-content: flex-start; /* Align the inner items to the left */
    }
}

#modal-dialog #product-details-image {
  max-height: 200px;      /* Limit the height to 230px */
  width: auto;            /* Maintain aspect ratio */
  object-fit: contain;    /* Ensure the whole image is visible */
  margin: 0 auto;         /* Center the image horizontally */
}

#modal-dialog-cultivar-details #cultivar-details-image {
    max-height: 150px;      /* Limit the height to 230px */
    width: auto;            /* Maintain aspect ratio */
    object-fit: contain;    /* Ensure the whole image is visible */
    margin: 0 auto;         /* Center the image horizontally */
  }

  #modal-dialog-holistic-details #holistic-details-image {
    max-height: 150px;      /* Limit the height to 230px */
    width: auto;            /* Maintain aspect ratio */
    object-fit: contain;    /* Ensure the whole image is visible */
    margin: 0 auto;         /* Center the image horizontally */
  }

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
	
}

.thc-wrapper {
    display: flex;
    gap: 10px; /* Adjust the gap between THC and THCA pills */
}



.product-description {
	position: relative;
}

.description-text {
    margin-bottom: 0;
    display: -webkit-box; /* For Safari */
    -webkit-box-orient: vertical;
    white-space: break-spaces;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3; /* Change this value to the number of lines you want before ellipsis */
    max-height: 5em; /* Adjust based on line height */
}

.description-text.expanded {
    display: block;
    -webkit-line-clamp: unset; /* Remove line clamp for full text */
    max-height: none; /* Remove max height restriction */
}

.read-more {
    display: inline-block;
    cursor: pointer;
    text-decoration: underline;
}

.read-more:focus {
    color: #0EA47A; /* Remove focus outline */
}

.onset-duration {
    display: flex;
    justify-content: space-around;
    margin: 15px 0;
}

.onset-pill, .duration-pill {
	background-color: rgb(224, 230, 237);
    text-align: center;
    padding: 5px 10px; /* Reduce padding to make pills thinner */
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 45%;
    font-size: 12px; /* Adjust font size for a thinner look */
    line-height: 1.2; /* Reduce line-height for compact text */
}

.onset-pill p, .duration-pill p {
    margin: 2px 0; /* Less margin between text for a tighter appearance */
}

.effects-helps-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.effects-column, .helpsWith-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.effects, .helpsWith {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: auto auto;
    justify-content: center;
    gap: 5px;
}

.effects span:first-child, .helpsWith span:first-child {
    grid-column: span 2; /* Center top pill */
    justify-self: center;
}



.size-options .container_radio {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 10px;
    position: relative; /* Add this */
    padding-left: 35px; /* Adjust this to add space for the radio */
}

.size-options .container_radio input[type="radio"] {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%); /* Vertically centers the radio button */
}

.discounted-price {
    color: #f44336;
}

.choose-type-container {
 

    padding: 0 15px; /* Space inside the container */
    border-radius: 10px; /* Rounded corners */
    margin-bottom: 20px; /* Spacing from the next section */

}

.choose-type-container h5 {
    margin-bottom: 10px; /* Add space below the heading */
}

#product-name-heading {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    font-size: 0.9rem;
    text-overflow: ellipsis;
    white-space: normal; /* Ensure wrapping is allowed */
}

.hidden {
    display: none;
}


.event-header {
    position: relative;
    width: 100%; /* Ensures the div takes full width */
    height: 200px; /* Fixed height */
    overflow: hidden; /* Prevents image from overflowing */
}

#event-details-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the container without distortion */
}

#event-details-date {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #0EA47A;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 2; /* Ensure it stays above the image */
}

.attendees {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 0; /* Remove default spacing */
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 20px;
}

.attendee {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -15px; /* Overlapping effect */
}

.attendee:first-child {
    margin-left: 0; /* Prevent negative margin on first image */
}

.more-attendees {
    color: white;
    font-size: 12px;
    margin-left: 8px;
}

.date-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: white;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

.date-badge .day {
    font-size: 20px;
    display: block;
}

.date-badge .month {
    font-size: 12px;
    color: #FF3B30;
    text-transform: uppercase;
}

.favorite-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
}

.event-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
}

.event-meta {
    text-align: left;
}

.event-category {
    background: #0EA47A;
    color: white;
    padding: 5px 12px 5px 10px; /* Added left padding for space */
    font-size: 12px;
    border-radius: 5px;
    display: inline-flex; /* Use flex to align icon and text properly */
    align-items: center;  /* Vertically align items */
    margin-bottom: 10px;
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: center;
    white-space: nowrap;
}

.event-category:before {
    font-family: 'food';
    content: '\0076';
    margin-right: 6px; /* Push text to the right */
    position: static; /* Remove absolute positioning */
}




.event-title {
    font-size: 20px;
    font-weight: bold;
    margin: 5px 0 10px;
}

.event-location,
.event-date,
.event-time,
.event-price,
.event-organizer {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.event-location i,
.event-date i,
.event-time i,
.event-price i,
.event-organizer i {
    margin-right: 8px;
    font-size: 16px;
    color: #0EA47A;
}

.checkbox_select ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
  }
  .checkbox_select ul li {
    display: inline-block;
    margin: 5px;
    width: 15%;
  }
  .checkbox_select.chose_day ul li {
    width: 25%;
  }
  .checkbox_select input[type="checkbox"] {
    opacity: 0;
    position: fixed;
    width: 0;
  }
  .checkbox_select label {
    display: inline-block;
    text-align: center;
    width: 100%;
    padding: 8px;
    border: 1px dotted #c8c8c8;
    background-color: #fff;
    font-size: 12px;
    
  }
  .checkbox_select label em {
    display: block;
    color: red;
    font-style: normal;
    font-size: 11px;
    font-size: 0.6875rem;
    font-weight: 500;
  }

  .checkbox_select label i {
    font-size: 16px; /* Set icon size */
}
  .checkbox_select label:hover {
    background-color: #dfd;
  }
  .checkbox_select input[type="checkbox"]:focus + label {
    border: 1px dotted #c8c8c8;
    background-color: #fff;
    color: #444;
  }
  .checkbox_select input[type="checkbox"]:focus + label em {
    color: #ffff66;
  }
  .checkbox_select input[type="checkbox"]:checked + label {
    border: 1px solid transparent;
    background-color: #0EA47A;
    color: #fff;
  }
  .checkbox_select input[type="checkbox"]:checked + label em {
    color: #ffff66;
  }
  
  .checkbox_select input[type="checkbox"]:disabled + label {
    cursor: not-allowed;
    background-color: #d3d3d3; /* Light gray */
    color: #a0a0a0; /* Dim text */
    border-color: #b0b0b0; /* Optional: Light gray border */
  }
  
  .checkbox_select input[type="checkbox"]:disabled + label:hover {
    background-color: #bfbfbf; /* Slightly darker gray on hover */
  }

  .scrollable-list {
    max-height: 200px; /* Adjust height as needed */
    overflow-y: auto;
    padding-left: 0;
    margin: 0;
}
.scrollable-list li {
    list-style: none;
    padding: 5px;
}

.color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.terpene-section {
    display: flex;
    align-items: center; /* Aligns terpene cards */
    gap: 20px; /* Adds spacing between sections */
}

.terpene-header{
    text-align: center;
}

/* DOMINANT TERPENE */
.dominant-terpene {
    flex: 1;
    display: flex;
    justify-content: center;
}

.dominant-terpene .terpene-card {
    width: 90%;
    text-align: center;
    padding: 20px;
}

.dominant-terpene ul {
    margin-top: 1rem;
    padding-left: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the list items */
}

.dominant-terpene li {
    display: flex;
    align-items: center; /* Ensures text and checkmarks align properly */
    gap: 8px; /* Adds spacing between checkmark and text */
}

.dominant-terpene li::before {
    content: "✔"; /* Adds checkmark before each benefit */
    color: green;
    font-weight: bold;
    font-size: 1rem;
}

/* OTHER TERPENES */
.other-terpenes {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.other-terpenes .terpene-card {
    width: 100%;
    padding: 15px;
}

/* GENERAL CARD STYLING */
.terpene-card {
    
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

h6 {
    font-weight: bold;
    margin-bottom: 5px;
}

.aroma {
    font-style: italic;
    color: #666;
    margin-bottom: 8px;
}

.benefits {
    margin-bottom: 10px;
}

.notes {
    font-size: 0.9em;
    color: #444;
}

.accommodation-card-shadow-custom {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15); /* Soft shadow */
    border-radius: 10px; /* Slight rounded corners */
    background-color: #fff; /* White background */
    
    
}




/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .terpene-section {
        flex-direction: column;
    }

    .dominant-terpene .terpene-card {
        width: 100%;
    }
}

  
  

