@charset "UTF-8";

/* SECTION */

.restaurant-logo-section {
  background: #f68e47;
}

.section-title {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.5px;
}

.section-line {
  width: 60px;
  height: 4px;
  background: white;
  margin: 12px auto 0;
  border-radius: 10px;
}

.logo-card {
  display: block;
  text-decoration: none;
}

.logo-card-inner {
  border-radius: 20px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  transition: all 0.3s ease;
}

.logo-card-inner:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.logo-card-inner img {
  max-width: 100%;
  max-height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-card-inner:hover img {
  transform: scale(1.05);
}

.slider-track {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider-track-inner {
  display: inline-flex;
  gap: 20px;
  animation: slider-marquee 40s linear infinite;
  -webkit-animation: slider-marquee 40s linear infinite;
  will-change: transform;
}

.slider-item {
  flex: 0 0 auto;
}

.logo-card-inner {
  width: 180px;
}

@keyframes slider-marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@-webkit-keyframes slider-marquee {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 576px) {
  .slider-track-inner {
    gap: 10px;
  }
}

.restaurant-logo-box {
  width: 180px;
}

@media (min-width: 1200px) {
  .restaurant-logo-box {
    width: 200px;
  }
}

@media (max-width: 576px) {
  .latest-restaurant-card .rounded-circle {
    width: 50px !important;
    height: 50px !important;
  }

  .latest-restaurant-card .rounded-circle img {
    width: 40px !important;
    height: 40px !important;
  }

  .latest-restaurant-card .fw-bold {
    font-size: 0.8rem !important;
  }
}

/* ========================================
   ADDRESS SEARCH — GRUBA POMARAŃCZOWA OBWÓDKA
   ======================================== */

.address-search-wrapper {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 140px !important;
}

.address-search-frame {
  background: #f68e47;
  border-radius: 36px;
  padding: 10px;
  padding-right: 3.5rem;
  box-shadow: 0 6px 32px rgba(246, 142, 71, 0.3), 0 2px 8px rgba(246, 142, 71, 0.15);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.address-search-frame:hover {
  box-shadow: 0 8px 40px rgba(246, 142, 71, 0.4), 0 2px 10px rgba(246, 142, 71, 0.2);
}

.address-search-frame:focus-within {
  box-shadow: 0 0 0 5px rgba(246, 142, 71, 0.15), 0 10px 48px rgba(246, 142, 71, 0.35), 0 2px 10px rgba(246, 142, 71, 0.15);
}

.address-search-inner {
  background: #ffffff;
  border-radius: 28px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
  padding: 0 10px 0 68px;
  min-height: 72px;
}

.address-search-icon {
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  color: #2d2d3a;
  font-size: 1.35rem;
  z-index: 2;
  pointer-events: none;
}

.address-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1.08rem;
  font-weight: 500;
  color: #1a1a2e;
  padding: 22px 170px 22px 0;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.01em;
  width: 100%;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.address-input::-moz-placeholder {
  color: #b8b8c8;
  font-weight: 400;
}

.address-input:-ms-input-placeholder {
  color: #b8b8c8;
  font-weight: 400;
}

.address-input::placeholder {
  color: #b8b8c8;
  font-weight: 400;
}

.address-clear-btn {
  position: absolute;
  right: 120px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #8a8a9a;
  font-size: 1.15rem;
  cursor: pointer;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.address-clear-btn:hover {
  color: #e74c3c;
  background: rgba(231, 76, 60, 0.07);
}

.address-clear-btn:active {
  transform: translateY(-50%) scale(0.88);
}

.address-clear-btn i {
  font-size: 1.05rem;
}

.address-search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  border-radius: 16px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.address-search-btn:hover {
  background: rgba(45, 45, 58, 0.06);
}

.address-search-btn:active {
  transform: translateY(-50%) scale(0.9);
}

.address-search-btn i {
  color: #2d2d3a;
  font-size: 1.3rem;
  transition: all 0.25s ease;
}

.address-search-btn:hover i {
  color: #1a1a2e;
  transform: translateX(2px);
}

.address-error-msg {
  margin-top: 14px;
  text-align: center;
  font-size: 0.82rem;
  color: #e74c3c;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 12px;
  background: rgba(231, 76, 60, 0.06);
  display: inline-block;
  min-width: 200px;
}

.pac-container {
  border-radius: 22px !important;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12) !important;
  border: none !important;
  margin-top: 12px !important;
  padding: 8px 0 !important;
  font-family: "Poppins", sans-serif !important;
  overflow: hidden;
}

.pac-item {
  padding: 15px 22px !important;
  border-bottom: 1px solid #f0f0f5 !important;
  font-size: 0.9rem !important;
  cursor: pointer;
  transition: background 0.15s ease;
}

.pac-item:last-child {
  border-bottom: none !important;
}

.pac-item:hover {
  background: #fef7f0 !important;
}

.pac-item-query {
  color: #1a1a2e !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
}

.pac-item .pac-item-place-icon {
  fill: #f68e47 !important;
}

.pac-item-powered-by {
  display: none !important;
}

@media (max-width: 768px) {
  .address-search-wrapper {
    padding-top: 120px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .address-search-frame {
    border-radius: 28px;
    padding: 7px;
    padding-right: 3rem;
  }

  .address-search-inner {
    border-radius: 22px;
    padding: 0 8px 0 56px;
    min-height: 60px;
  }

  .address-search-icon {
    left: 18px;
    font-size: 1.2rem;
  }

  .address-input {
    padding: 18px 140px 18px 0;
    font-size: 0.95rem;
  }

  .address-clear-btn {
    right: 100px;
    width: 34px;
    height: 34px;
  }

  .address-search-btn {
    width: 44px;
    height: 44px;
    right: 6px;
    border-radius: 14px;
  }

  .address-search-btn i {
    font-size: 1.15rem;
  }

  .address-error-msg {
    font-size: 0.78rem;
    margin-top: 10px;
  }
}

