/* Cookie consent — A&V Truck Repair */
.av-cookie-consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  max-width: 720px;
  margin: 0 auto;
  background: #183b79;
  color: #fff;
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  display: none;
  align-items: flex-start;
  gap: 18px;
  transform: translateY(24px);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.av-cookie-consent.is-visible {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.av-cookie-consent__content {
  flex: 1 1 auto;
  min-width: 0;
}

.av-cookie-consent__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.av-cookie-consent__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.av-cookie-consent__text a {
  color: #f4ce27;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.av-cookie-consent__text a:hover {
  color: #fff;
}

.av-cookie-consent__actions {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.av-cookie-consent__btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  border-radius: 30px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: 0.25s ease;
}

.av-cookie-consent__btn--accept {
  background: #f4ce27;
  color: #183b79;
}

.av-cookie-consent__btn--accept:hover {
  background: #fff;
  color: #183b79;
}

.av-cookie-consent__btn--decline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.av-cookie-consent__btn--decline:hover {
  border-color: #f4ce27;
  color: #f4ce27;
}

@media (max-width: 767.98px) {
  .av-cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    padding: 18px;
    border-radius: 16px;
  }

  .av-cookie-consent__actions {
    width: 100%;
  }

  .av-cookie-consent__btn {
    flex: 1 1 auto;
    text-align: center;
  }
}
