/* This file will import all other modular CSS files */

@import url('base.css');
@import url('layout.css');
@import url('animations.css');

/* Components */
@import url('components/navigation.css');
@import url('components/hero.css');
@import url('components/section-header.css');
@import url('components/category-tabs.css');
@import url('components/menu-items.css');
@import url('components/modals.css');
@import url('components/cart-checkout.css');
@import url('components/footer.css');
@import url('components/utility-components.css');
@import url('components/slider.css');
@import url('components/combo-sections.css');
@import url('components/buttons.css');
@import url('components/suggested-addons.css');
@import url('components/menu-banner.css');


/* Responsive adjustments */
@import url('responsive.css');

/* Custom Cart Item Styling */
.cart-item .cart-item-info .cart-item-name {
  line-height: 1.3;
  font-size: 1em;
}

.cart-item-name strong {
}

.cart-item-options {
  font-size: 0.8em;
  font-style: italic;
  color: #555;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 8px; /* Space after bold name */
  list-style: none;   /* Remove bullets */
  display: inline;    /* Allow list to flow in-line */
  font-weight: normal !important;
}

.cart-item-options li {
  display: inline; /* Make list items horizontal */
  padding: 0;
}

/* Add a comma separator between items */
.cart-item-options li:not(:last-child)::after {
  content: ", ";
}

.cart-item {
    padding: 8px 0;
}

/* Style for price */
.cart-item-price {
  font-size: 0.85em; /* Smaller and bold */
  font-weight: normal;
  font-style: normal;
}

/* Style for quantity */
.cart-item-quantity {
  font-size: 0.9em; /* Smaller only */
  font-weight: normal;
  font-style: normal;
}

.navbar .logo img {
  height: 70px;
  width: auto;
}

/* Blog Post Image Styling */
.blog-post img {
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  display: block; /* Ensure it behaves as a block element */
  margin: 0 auto 15px auto; /* Center the image and keep margin-bottom */
}

/* Adjust spacing for menu section */
#menu-section {
  margin-top: -2rem; /* Pull it up to reduce space */
}

/* Address Suggestions Styling */
.address-suggestions {
  border: 1px solid #ddd;
  max-height: 150px;
  overflow-y: auto;
  position: absolute; /* Position relative to its parent form-group */
  width: calc(100% - 2px); /* Match input width */
  background-color: white;
  z-index: 1000; /* Ensure it's above other elements */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: none; /* Hidden by default */
}

.address-suggestion-item {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.address-suggestion-item:hover {
  background-color: #f0f0f0;
}

/* Force color for select options */
select option {
  color: #333 !important;
  background-color: #fff !important; /* Ensure background is not dark */
}

@media (max-width: 768px) {
  select.combo-select {
    padding: 6px !important; /* Force padding for small screens */
  }
}