/* прибрав додатковий список категорій під полем пошуку в хедері */
.site-heading-sidebar .widget {
    display: none;
}

.top-bar-section {
  background-color: 	#B3E3FC;
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
  text-align: center;
}

/* стилі бігучої строки під хедером */
.ayra-marquee {
  width: 100%;
  overflow: hidden;
  background-color: #f5f5f5;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  position: relative;
}

.ayra-marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-left 40s linear infinite;
}

.ayra-marquee-track span {
  display: inline-block;
  white-space: nowrap;
  padding-right: 100px;
  font-weight: 500;
  color: #333;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}




/* приховав стандартний футер теми */
.footer-credits {
    display: none;
}

/* стилі для футера */
/* Modern Footer Style */
.modern-footer {
  background: #121212;
  color: #f1f1f1;
  padding: 60px 20px 30px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo a {
  font-size: 24px;
  font-weight: bold;
  color: #B3E3FC;
  text-decoration: none;
}

.footer-logo p {
  margin-top: 10px;
  font-size: 14px;
  color: #aaa;
}

.footer-links {
	display: flex;
	justify-content:space-between;
}

.footer-links h4,
.footer-subscribe h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #B3E3FC;
}

.footer-subscribe p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #ccc;
}

.footer-subscribe form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-subscribe input[type="email"] {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 6px;
  outline: none;
  background: #1f1f1f;
  color: #fff;
}

.footer-subscribe button {
  padding: 10px 20px;
  background: #B3E3FC;
  border: none;
  color: #000;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-subscribe button:hover {
  background: #00ccbb;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #888;
}

.social-icons a {
  color: #bbb;
  margin-left: 15px;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #B3E3FC;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-subscribe form {
    flex-direction: column;
  }

  .footer-subscribe input,
  .footer-subscribe button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}