/* BUTTONS */
.btn-longos-outline {
  background-color: transparent;
  color: var(--longos-dark-gray);
  border: 1px solid var(--longos-dark-gray);
  border-radius: 25px;
  font-family: var(--font-text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3.43px;
  transition: background-color 0.3s, color 0.3s;
}

.btn-longos-outline:hover, .btn-longos-outline.active {
  background-color: var(--longos-dark-gray);
  color: var(--longos-white);
}


.btn-longos-red {
  background-color: var(--longos-red);
  color: var(--longos-white);
  border: 1px solid var(--longos-red);
  font-family: var(--font-text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.btn-longos-red:hover {
  background-color: var(--longos-dark-red);
  border-color: var(--longos-dark-red);
}

.link-text {
    color: var(--longos-dark-gray);
    font-family: var(--font-text);
    text-decoration-line: underline;
}

.link-text:hover {
    color: var(--longos-red);
}

/* CARDS */
.card-longos {
  border-radius: 8px;
  border: 0.5px solid var(--longos-light-gray);
  box-shadow: 2px 2px 4px rgba(167, 167, 167, 0.6);
  background-color: var(--longos-white);
  font-family: var(--font-text);
}

.card-longos .card-title {
  color: var(--longos-dark-gray);
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.07px;
}

.card-longos .card-subtitle {
  color: var(--longos-medium-gray);
  font-family: var(--font-text);
  font-style: italic;
  font-weight: 600;
}

.card-longos .card-price {
  color: var(--longos-dark-gray);
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.card-longos .card-price-cents {
  font-size: 1.2rem;
  color: var(--longos-red);
  font-weight: 700;
}

.card-longos .card-original-price {
  font-size: 1.6rem;
  color: var(--longos-medium-gray);
  text-decoration: line-through;
}

.single-card-container {
    width: 1280px;
    height: 351px;
    background-color: var(--longos-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 60px auto;
    font-family: var(--font-text);
}

.single-card-text-area {
    width: 640px;
    height: 351px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--longos-white);
}

.single-card-image-area {
    width: 640px;
    height: 351px;
    overflow: hidden;
}

.single-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-card-title {
    color: var(--longos-dark-gray);
    font-size: 2.6rem;
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 30px;
    letter-spacing: 1px;
    word-wrap: break-word
}

.single-card-subtitle {
    color: var(--longos-dark-gray);
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 17px;
    letter-spacing: 1px;
    word-wrap: break-word
}

.single-card-subtitle-red {
    color: var(--longos-red);
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 17px;
    letter-spacing: 1px;
    word-wrap: break-word;
}

.single-card-description {
    color: var(--longos-dark-gray);
    font-size: 1.8rem;
    font-family: var(--font-text);
    font-weight: 300;
    line-height: 26px;
    word-wrap: break-word
}

.single-card-learn-more {
    font-size: 1.4rem;
    color: var(--longos-dark-gray);
    text-decoration: none;
    display: inline-block;
    border-bottom: 1px solid var(--longos-dark-gray);
    padding-bottom: 3px;
    align-self: center;
    transition: all 0.3s ease;
    font-family: var(--font-text);
}

.single-card-learn-more:hover {
    color: var(--longos-dark-gray);
    border-color: var(--longos-dark-gray);
    text-decoration: none;
}

/* DROPDOWNS */
.dropdown-menu-longos {
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  background-color: var(--longos-white);
  font-family: var(--font-text);
}

.dropdown-menu-longos .dropdown-header {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--longos-dark-gray);
}

/* TYPOGRAPHY */
.text-longos-red {
  color: var(--longos-red) !important;
  /* only color should be defined here */
  /*font-family: var(--font-display);*/
  /*font-weight: 700;*/
  /*text-transform: uppercase;*/
}

.text-longos-dark-gray {
  color: var(--longos-dark-gray) !important;
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900; /* Corresponds to 'bolder' */
    line-height: 17px;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-wrap: break-word;
}

.page-title {
    color: var(--longos-dark-gray);
   font-size: 3.6rem;
    font-family: var(--font-text);
    font-weight: 700;
    line-height: 44px;
    letter-spacing: 0.50px;
    word-wrap: break-word;
    justify-content: center;
}


/* UTILITY CLASSES */
.bg-longos-light-tan {
  background-color: var(--longos-light-tan) !important;
}

.bg-longos-red {
  background-color: var(--longos-red) !important;
}

.ls-1 { letter-spacing: 1px; }
.ls-2 { letter-spacing: 2px; }
.ls-3 { letter-spacing: 3px; }

.cooking-card-container {
  min-width: 1280px;
  max-width: 1280px;
  margin: 2rem auto;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  background: var(--longos-white);
  display: flex;
  flex-direction: row;
  height: 351px;
}

.cooking-card-text-area {
  width: 50%;
  height: 351px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--longos-white);
}

.cooking-card-image-area {
  width: 50%;
  height: 351px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  padding: 0;
}

.cooking-card-image-area img {
  width: 100%;
  height: 351px;
  object-fit: cover;
  border-radius: 0 8px 8px 0;
  padding: 0;
  margin: 0;
  display: block;
}



@media (max-width: 1280px) {
  .cooking-card-container {
    min-width: 100vw;
    max-width: 100vw;
    flex-direction: column;
    height: auto;
  }
  .cooking-card-text-area, .cooking-card-image-area {
    width: 100% !important;
    height: auto !important;
    padding: 24px !important;
  }
  .cooking-card-image-area {
    padding: 0 !important;
  }
  .cooking-card-image-area img {
    width: 100% !important;
    height: auto !important;
    border-radius: 0 0 8px 8px;
    padding: 0 !important;
  }
}

.cooking-promo-container {
  width: 1280px;
  height: 500px;
  max-width: 100vw;
  margin: 2rem auto;
  background: var(--longos-white);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}

.cooking-promo-image-area {
  width: 50%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  padding: 0;
}

.cooking-promo-image-area .promo-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px 0 0 8px;
  display: block;
}

.cooking-promo-text-area {
  width: 50%;
  height: 500px;
  padding: 40px;
  display: flex;
  align-items: center;
  background: var(--longos-white);
}

@media (max-width: 1280px) {
  .cooking-promo-container {
    width: 100vw;
    height: auto;
    flex-direction: column;
    border-radius: 0;
  }
  
  .cooking-promo-image-area, .cooking-promo-text-area {
    width: 100% !important;
    height: auto !important;
    padding: 24px !important;
  }
  
  .cooking-promo-image-area .promo-image {
    width: 100% !important;
    height: auto !important;
    border-radius: 8px 8px 0 0;
  }
}

.location-button, .date-btn, .instructor-btn, .class-type-btn {
    background-color: rgba(0, 0, 0, 0) !important;
    height: 50px;
    color: var(--longos-dark-gray);
    border-radius: 25px;
    width: 300px;
    max-width: 300px;
    height: 52px;
    max-height: 52px;
    text-align: left;
    padding: 0% 10% 0% 10%;
    position: relative;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    border: 1px solid var(--longos-dark-gray) !important;
    cursor: pointer;
    margin: 0 auto;
    font-family: var(--font-text);
    font-weight: 900;
    
}
/* Fix arrow position */
.location-button .fas, .date-btn .fas, .instructor-btn .fas, .class-type-btn .fas {
    float: right;
    margin-top: 2px;
}

/* Consistent hover and active states for all buttons */
.location-button:hover, .date-btn:hover, .instructor-btn:hover, .class-type-btn:hover,
.location-button.active, .date-btn.active, .instructor-btn.active, .class-type-btn.active {
    background-color: var(--longos-dark-gray) !important; /* Use variable */
    color: var(--longos-white); /* Use variable */
    border-radius: 25px; 
    border: 1px var(--longos-dark-gray) solid; /* Use variable */
}

/* Hide Bootstrap's default caret for the date button */
.date-btn.dropdown-toggle::after,
.location-button.dropdown-toggle::after,
.instructor-btn.dropdown-toggle::after,
.class-type-btn.dropdown-toggle::after{
    display: none !important;
}

.row.gx-4 {
    --bs-gutter-x: 2px; /* Set the spacing between columns */
    justify-content: center; /* Center all buttons */
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.col-md-3 {
    display: flex;
    justify-content: center;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.dropdown {
    display: flex;
    justify-content: center;
}

/* Custom styles for the dropdown menu itself */
.location-combobox-container .location-dropdown-menu {
    /* display: none; /* Bootstrap handles this */
    position: absolute;
    width: 320px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border: 1px solid var(--longos-light-gray);
    padding-left: 40px;
    margin-top: 8px !important;
}

.instructor-dropdown-menu {
    width: 360px !important;      
  /*max-height: 350px;            */
  overflow-y: auto;             
  padding: 1rem;                
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--longos-light-gray);
  border-radius: 10px;
  
  /* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“right: 0; left: auto;ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â forces it to drop down ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹directly under the toggle */
  position: absolute;  
  right: 0;           
  left: auto;         
  z-index: 2000;      /* ensure it sits above other elements */
}
.instructor-dropdown-menu .input-group {
  width: 100% !important;
  /* allow the <input> plus icon to flex out */
  display: flex !important;
  margin: 0;             /* remove any odd margins/padding */
  padding: 0;
}
.dropdown-menu{
    max-width:400px;
    min-width:280px;
}

.instructor-dropdown-menu .input-group .form-control {
  flex: 1 1 auto;       /* let the text field stretch */
  min-width: 0;         /* no shrinking issues */
}


.text-input-type {
    font-family: var(--font-text) !important;
}


/* Update your existing btn-apply-filter styles */
.btn-apply-filter {
    font-family: var(--font-text) !important;
    height: 40px;
    width: 120px;
    border: 1px solid var(--longos-dark-gray) !important;
    background-color: var(--longos-light-gray) !important; /* Default disabled state */
    color: #6c757d !important; /* Muted text for disabled */
}

/* When not disabled, make it primary (red) */
.btn-apply-filter:not(:disabled) {
    border: 1px solid var(--longos-red) !important;
    background-color: var(--longos-red) !important;
    color: var(--longos-white) !important;     
}

/* Hover state for enabled buttons */
.btn-apply-filter:not(:disabled):hover {
    border: 1px solid var(--longos-dark-red) !important;
    background-color: var(--longos-dark-red) !important;
    color: var(--longos-white) !important;
}

.btn-clear-filter {
    font-family: var(--font-text) !important;
    height: 40px;
    width: 120px;
    border: 1px solid var(--longos-dark-gray) !important;
    /*background-color: var(--longos-light-gray) !important; */
    color: #6c757d !important; 
}

/* When not disabled, make it outline style */
.btn-clear-filter:not(:disabled) {
    border: 1px solid var(--longos-dark-gray) !important;
    background-color: transparent !important;
    color: var(--longos-dark-gray) !important;
}

.btn-clear-filter:not(:disabled):hover {
    border: 1px solid var(--longos-dark-gray) !important;
    background-color: var(--longos-dark-gray) !important;
    color: var(--longos-white) !important;
}

/*.btn-apply-filter, .btn-clear-filter {
    font-family: var(--font-text) !important;
    height: 40px;
    width: 120px;
    border: 1px solid var(--longos-dark-gray) !important;
}
.btn-apply-filter{
   border: 1px solid var(--longos-red) !important;
    background-color: var(--longos-red) !important;
    color: var(--longos-white);     
}*/
/*.btn-apply-filter:not(:disabled):hover {
    border: 1px solid var(--longos-dark-gray) !important;
    background-color: var(--longos-dark-gray);
    color: var(--longos-white);
}

.btn-apply-filter:hover,.btn-apply-filter:after, .btn-apply-filter.active {
    border: 1px solid var(--longos-red) !important;
    background-color: var(--longos-red) !important;
    color: var(--longos-white);
}

.btn-clear-filter:hover, .btn-clear-filter.active {
    border: 1px solid var(--longos-dark-gray) !important;
    background-color: var(--longos-dark-gray);
    color: var(--longos-white);
}*/

.dropdown-footer {
    padding-top: 25px;
}

.date-picker {
  position: absolute;
  top: 60px;
  left: 0;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 350px;
  height: 480px;
  z-index: 1000;
  display: none; 
}

.date-inputs {
  display: flex;
  justify-content: space-between;
  margin: 1rem 0;
  gap: 10px;
  font-family: var(--font-text);
}

.date-inputs input {
  font-size: 1.7rem;
  font-family: var(--font-text);
}

.date-input {
  font-size: 1.7rem !important;
  font-family: var(--font-text) !important;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  border: 1px solid var(--longos-light-gray);
}

.calendar div {
  padding: 6px 0;
  font-size: 1.36rem;
}

.calendar .day {
  cursor: pointer;
  /*border-radius: 50%;*/
  transition: background 0.2s, border-color 0.2s;
  border: 1px solid var(--longos-light-gray);
}

.calendar .day:hover {
  background-color: var(--longos-medium-gray);
  color: var(--longos-white);
}

.calendar .disabled {
  color: #ccc;
  pointer-events: none;
}

.calendar .selected {
  background-color: var(--longos-red);
  color: var(--longos-white);
}

.date-label {
    color: var(--longos-dark-gray);
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 30px;
    letter-spacing: 1px;
    word-wrap: break-word;
    text-align: center;
}

.date-label-sm {
    color: var(--longos-dark-gray);
    font-size: 1.2rem;
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 20px;
    letter-spacing: 1px;
    word-wrap: break-word;
    text-align: center;
}

.calendar .day:not(.disabled):not(.day-selected):not(.day-in-range):hover {
  background: var(--longos-medium-gray); /* Light gray for hover on non-selected, non-in-range days */
}

.calendar .day.disabled {
  color: #ccc;
  cursor: not-allowed;
}

/* Dropdown Menu Customizations */
.class-type-dropdown-content.dropdown-menu { /* Target Bootstrap's .dropdown-menu */
width: 320px; /* Or min-width: 300px; to match button */
min-width: 450px;
border-radius: 10px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
border: 1px solid var(--longos-light-gray);
margin-top: 8px !important; /* Maintain original spacing */
/* padding: p-3 (1rem) is set in HTML, adjust if 20px is strictly needed */
}

.class-type-dropdown-content .class-dropdown-header h3 {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--longos-dark-gray);
    font-size: 1.6rem; /* Example size */
}

.class-type-dropdown-content h4 { /* For "FOR ADULTS", "FOR KIDS" */
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--longos-dark-gray);
    font-size: 1.4rem;
    margin-top: 0.5rem; /* Add some space above if it's not the first element */
    margin-bottom: 0.75rem;
}

/*instructor css*/
/* Header with close button styling */
.dropdown-header-with-close {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin-bottom: 15px;
}

.close-dropdown-btn {
    background: none;
    border: none;
    font-size: 4rem;
    font-weight: 200;
    line-height: 1;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-dropdown-btn:hover {
    background-color: #f0f0f0;
    color: #333;
}

.instructor-list .instructor-item {
  border-bottom: 1px solid #eee; 
  padding: 0.75rem 1rem;     /* slightly tighter vertical padding */
}
.instructor-list .instructor-item:last-of-type {
  border-bottom: none;      /* no extra border on the very last item */
}

.instructor-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.instructor-list {
    max-height: 250px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.plus-button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #e6e6e6;
  border: none;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.plus-button::before,
.plus-button::after {
  content: "";
  position: absolute;
  background-color: #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s ease;
}

/* Horizontal line */
.plus-button::before {
  width: 16px;
  height: 1px;
}

/* Vertical line */
.plus-button::after {
  width: 1px;
  height: 16px;
}

.plus-button:hover,
.plus-button:active,
.plus-button:focus {
  background-color: #333;
}

.plus-button:hover::before,
.plus-button:hover::after,
.plus-button:active::before,
.plus-button:active::after,
.plus-button:focus::before,
.plus-button:focus::after {
  background-color: #fff;
}

/* Remove outline when focused */
.plus-button:focus {
  outline: none;
}

#closePicker {
    /* Example: Basic styling if not using Bootstrap's .btn-close */
    /* background: none;
    border: none;
    font-size: 2.4rem;
    cursor: pointer; */
}

/* Cooking class cards */
.custom-row {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -20px;
    margin-left: -65px;
    width: 1250px;
}

.custom-card {
    border-radius: 8px;
    border: 0.5px solid #D1D3D4;
    box-shadow: 2px 2px 4px rgba(167, 167, 167, 0.6);
    background-color: white;
    position: relative;
}

.custom-card-image-wrapper {
    height: 342px;
    background-color: #fff;
}

.custom-card-image-wrapper a {
    display: block;
    width: 100%;
    height: 100%;
}

/*.custom-black-bg {
  height: 100%;
  width: 100%;
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 8px 8px 0 0;
}*/

.custom-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-card-title {
    height: 34px;
}

.custom-subtitle {
  color: var(--longos-dark-gray);
font-size: 1.5rem;
font-family: var(--font-text);
font-style: italic;
font-weight: 600;
word-wrap: break-word
}

.custom-promo {
    color: var(--longos-red);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
}
@media(min-width: 990px) {
    .custom-promo {
        height: 40px;
    }
}

.custom-price {
  display: flex;
  align-items: flex-start;
  margin-bottom: 4px;
}

.custom-price-main {
    color: var(--longos-dark-gray);
    font-size: 3.2rem;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    word-wrap: break-word
}

.custom-price-cents {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--longos-red);
  text-transform: uppercase;
  margin-top: 5px;
}

.custom-original-price {
  font-size: 1.6rem;
  color: var(--longos-dark-gray);
  font-weight: 600;
  text-decoration: line-through;
  margin-bottom: 12px;
}

.custom-points {
  font-size: 1.8rem;
  color: var(--longos-red);
  font-weight: 700;
  margin-bottom: 16px;
}

.custom-points-label {
  font-size: 1.5rem;
}

.custom-book-button {
  background-color: var(--longos-red);
  color: white;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  border-radius: 4px;
  padding: 10px 24px;
  width: 160px;
  height: 42px;
}

.custom-book-button:hover {
  background-color: var(--longos-dark-red);
  color: white;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  border-radius: 4px;
  padding: 10px 24px;
  width: 160px;
  height: 42px;
}

.results-info {
    text-align: right;
    color: var(--longos-dark-gray) !important;
    font-size: 1.8rem;
    font-family: var(--font-text);
    font-style: italic;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.64px;
    word-wrap: break-word;
    padding-right: 15px; /* Add some right padding */
}

.clear-link {
    color: var(--longos-dark-gray);
    font-size: 1.8rem;
    font-family: var(--font-text);
    font-weight: 600;
    text-decoration: underline;
    line-height: 22px;
    word-wrap: break-word;
}

/* Class detail */
.guest-count-group {
  display: none !important;
}

.guest-count-group.visible {
  display: block !important;
}

.upsell-group {
  display: none !important;
}

.upsell-group.visible {
  display: flex !important;
}

.label-restriction {
    color: #2A2A2A;
    font-size: 1.6rem;
    font-family: "Neutraface 2 Text", sans-serif;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0.50px;
    word-wrap: break-word;
}

.label-product {
    width: 200px;
    color: #2A2A2A;
    font-size: 1.5rem;
    font-family: "Neutraface 2 Display", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 17px;
    letter-spacing: 1px;
    word-wrap: break-word;
}

.class-description {
    color: #2A2A2A;
    font-size: 1.8rem;
    font-family: "Neutraface 2 Text", sans-serif;
    font-weight: 300;
    line-height: 26px;
    word-wrap: break-word;
}

.cooking-classes-breadcrumb {
    padding-top: 24px;
    padding-bottom: 24px;
}

.vector-line {
    background-color: #000000;
}

.background-page { /* Assuming .main_content is not used or covered by .background-page */
    background-color: #F8F4ED;
}

.background-frame {
    background-color: #FFF;
}

.password-input{
    width:100%;
}    

/* Background Color */
.bg-light-tan {
  background-color: var(--longos-light-tan);
}

/* Custom Button Color */
.btn-longos-red {
  color: #fff;
  background-color: var(--longos-red);
  border-color: var(--longos-red);
  height: 42px;
}



@media(max-width: 768px) {
    .btn-longos-red {
      max-width: 180px;
    }
    /*reduced the size of title in responsive to match figma*/
    .page-title {
        font-size: 2.8rem;
        line-height: 34px;
    
    }
    /* Avoiding cut off the results*/
     .results-info {
        font-size: 1.6rem;
        text-align: center; /* Center on mobile */
        padding-right: 5%;
        /*margin-top: 18px;*/
        align-items: center;
        
    }
    .clear-link{
        font-size: 1.6rem;
        margin-top:10%
        
    }
    .plus-button{
        padding: 0px !important;    
    }
    /* Horizontal line */
    .plus-button::before {
      width: 16px;
      height: 1px;
    }

    /* Vertical line */
    .plus-button::after {
      width: 1px;
      height: 16px;
    }
    
    .location-combobox-container .location-dropdown-menu {
        left: 50% !important;
        transform: translateX(-50%) !important;
        right: auto !important;
        padding:5%;
    }
    .instructor-dropdown-menu,
      #datePicker,
      .class-type-dropdown-content {
        left: 50% !important;
        transform: translateX(-50%) !important;
        right: auto !important;
        padding: 5% !important;
        width: 90vw;
        max-width: 360px;
        height: max-content;
    }
    
    .dropdown-menu {
    min-width: 380px !important;
    }
}

.btn-longos-red:hover {
  color: #fff;
  background-color: #a71315; /* Darker red for hover */
  border-color: #9d1214;
}

/* Text Color */
/* only color should be defined here */
/*.text-longos-red {*/
/*    color: #2A2A2A;*/
/*    font-size: 2.6rem;*/
/*    font-family: "Neutraface 2 Display", sans-serif;*/
/*    font-weight: 700;*/
/*    text-transform: uppercase;*/
/*    word-wrap: break-word*/
/*}*/
.text-longos-dark-gray {
    color: var(--longos-dark-gray) !important;
}

/* Background Color */
.bg-longos-red {
    background-color: var(--longos-red) !important;
}

/* Letter Spacing Utilities */
.ls-1 { letter-spacing: 1px; }
.ls-2 { letter-spacing: 2px; }
.ls-3 { letter-spacing: 3px; }

/* Product Card Specifics */
.product-card {
  border-radius: 8px;
  overflow: hidden; /* Ensures image corners are rounded if needed */
}

.product-title {
  font-family: var(--font-text);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 28px;
  color: var(--longos-dark-gray);
}

.subsection-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 17px;
    color: var(--longos-dark-gray);
}

.price-box {
    /*width: 130px;*/
    max-height: 130px;
}

/* Price Styling */
.price-display .price-main {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}

.price-display .price-cents {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  vertical-align: top;
  margin-left: -2px;
}

/* Ingredients List Alignment */
.ingredients-list {
  line-height: 1.6; /* Adjust as needed for alignment */
}

/* Responsive Adjustments (Example) */
@media (max-width: 991.98px) {
    .product-image {
        max-height: 400px; /* Limit image height on smaller screens */
        width: 100%;
        object-fit: cover;
        margin: 0;
        padding: 12px;
        top: 50px;
    }
}


.remove-item {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='13' viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.51827 1.34281L12.2663 12.0908' stroke='%23D5181A' stroke-width='1.2' stroke-linecap='square'/%3E%3Cpath d='M12.2663 1.34281L1.51825 12.0908' stroke='%23D5181A' stroke-width='1.2' stroke-linecap='square'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    appearance: none;
    border: 0 none;
    background-color: transparent;
    padding: 0;
}


/* Also add for number spinner specifically */
.number-spinner .btn:disabled,
.number-spinner .btn.disabled {
    border-color: var(--longos-light-gray) !important;
    background-color: var(--longos-light-gray) !important;
    color: #6c757d !important;
    cursor: not-allowed !important;
    opacity: 1 !important;
}


/*custom css for grey background color */
/* Custom spinner button styles */
.longos-spinner-btn {
    
    background-color: var(--longos-red) !important;
    border-color: var(--longos-red) !important;
    color: var(--longos-white) !important;
    font-family: var(--font-text) !important;
    font-weight: 700 !important;
    border: 1px solid var(--longos-red) !important;
}

.longos-spinner-btn:hover,
.longos-spinner-btn:active,
.longos-spinner-btn:focus {
    background-color: var(--longos-dark-red) !important;
    border-color: var(--longos-dark-red) !important;
    color: var(--longos-white) !important;
}

/* DISABLED STATE - This will definitely work */
.longos-spinner-btn:disabled,
.longos-spinner-btn.disabled {
    /*background-color: var(--longos-light-gray) !important;*/
    background-color: yellow;
    border-color: var(--longos-light-gray) !important;
    color: #6c757d !important;
    cursor: not-allowed !important;
    opacity: 1 !important;
    pointer-events: none !important;
}