/*!************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./components/phone/phone.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************/
.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Always 3 columns */
    gap: 20px;
    padding: 20px 0;
}

@media (max-width: 900px) {
    .quick-access-grid {
        grid-template-columns: repeat(3, 1fr); /* Tablet: 2 columns */
    }
}

@media (max-width: 600px) {
    .quick-access-grid {
        grid-template-columns: repeat(3, 1fr); /* Mobile: 3 columns */
    }
}
.quick-access-item {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.quick-access-item:hover {
    transform: translateY(-5px);
}
.quick-access-item .food-brands {
    display: block;
    margin-bottom: 10px;
}
.quick-access-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.quick-access-item h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.emergency-swiper-loading {
  width: 100%;
  padding: 10px 0;
}

.loading-placeholder {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.emergency-item-placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.placeholder-image {
  width: 60px;
  height: 60px;
  background: #f0f0f0;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.placeholder-text {
  width: 80px;
  height: 16px;
  background: #f0f0f0;
  border-radius: 4px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.6;
  }
}
/* Emergency Swiper Styles */
.brands-logo {
    position: relative;
    display: flex;
    gap: 20px;
    overflow: hidden;
    min-height: 120px;
}

.swiper-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.swiper-container.visible {
    opacity: 1;
}

.brands-logo-swiper {
    height: 100%;
}

.swiper-slide-placeholder {
    flex: 0 0 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.swiper-slide-placeholder.fade-out {
    opacity: 0;
}

.swiper-slide-placeholder .food-brands {
    display: block;
    text-align: center;
    text-decoration: none;
    color: inherit;
}

.swiper-slide-placeholder .brand-img {
    width: 100%;
    height: auto;
    margin-bottom: 8px;
}

.swiper-slide-placeholder h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

/* Swiper Slide Styles */
.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.swiper-slide .food-brands {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.swiper-slide .brand-img {
    width: 100%;
    height: auto;
    margin-bottom: 8px;
}

.swiper-slide h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.emergency-grid {
  position: relative;
  display: flex;
  gap: 20px;
  overflow: hidden;
  min-height: 120px;
}
.emergency-grid h4 {
  margin-top: 10px;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: rgba(var(--dark-text), 1);
}
.emergency-grid .emergency-contact {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px;
  border: 1px solid rgba(var(--light-theme-color), 1);
  border-radius: 100%;
  margin: 0 auto;

}
.content-wrapper.main-content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#root, .app-main-wrapper { /* or your main app wrapper */
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

.content-wrapper.main-content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  /* Remove min-height! */
}

.footer {
  flex-shrink: 0;
  /* Optionally: */
  position: sticky;
  bottom: 0;
  width: 100%;
  z-index: 10;
}
