/* Footer Styles - InstaPresse */
.footer-new {
  background: #000 !important;
  color: #fff !important;
  padding: 0 !important;
  background-image: none !important;
}

.footer__tagline {
  background: #111;
  padding: 2rem 0;
  margin-bottom: 0;
}

.footer__tagline h3 {
  color: #fff;
  margin-bottom: 0;
}

.footer__content {
  background: #000;
  padding: 3rem 0;
}

.footer__column {
  padding: 0 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .footer__column {
    margin-bottom: 0;
    border-right: 1px solid #333;
  }
  .footer__column:last-child {
    border-right: none;
  }
}

.footer__title {
  color: #fff !important;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__products {
  margin-top: 1rem;
}

.footer__family {
  margin-bottom: 1.5rem;
}

.footer__family-title {
  color: #fff !important;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  cursor: pointer;
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
  transition: color 0.3s ease;
}

.footer__family-title:hover {
  color: #007cba !important;
}

.footer__toggle {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.footer__family.active .footer__toggle {
  transform: rotate(45deg);
}

.footer__products-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
  padding-left: 1rem;
}

.footer__products-list li {
  margin-bottom: 0.25rem;
}

.footer__products-list a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: block;
  padding: 0.125rem 0;
}

.footer__products-list a:hover {
  color: #fff;
  padding-left: 0.5rem;
}

.footer__family.active .footer__products-list {
  display: block;
}

.footer__no-products {
  color: #ccc;
  font-style: italic;
  margin: 1rem 0;
}

.footer__pages-list,
.footer__submenu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__pages-list li,
.footer__submenu-list li {
  margin-bottom: 0.75rem;
}

.footer__pages-list a,
.footer__submenu-list a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
}

.footer__pages-list a:hover,
.footer__submenu-list a:hover {
  color: #fff;
  border-bottom-color: #007cba;
  padding-left: 0.5rem;
}

.footer__submenu {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #333;
}

.footer__submenu-title {
  color: #fff !important;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__contact,
.footer__hours {
  margin-bottom: 2rem;
}

.footer__contact-title,
.footer__hours-title {
  color: #fff !important;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__contact-list,
.footer__hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__contact-item,
.footer__hours-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.footer__contact-item i {
  color: #007cba;
  width: 20px;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer__contact-item a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.5;
}

.footer__contact-item a:hover {
  color: #fff;
}

.footer__hours-item {
  color: #ccc;
  line-height: 1.5;
}

.footer__current-time {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}

.footer__current-time small {
  color: #007cba;
  font-style: italic;
}

.footer__hours-updated {
  margin-top: 0.5rem;
}

.footer__hours-updated small {
  color: #666;
  font-size: 0.8rem;
}

.footer__hours-note {
  margin-top: 0.5rem;
}

.footer__hours-note small {
  color: #999;
  font-style: italic;
  font-size: 0.8rem;
}

.footer__hours-fallback {
  color: #ccc;
  font-style: italic;
}

.footer__copyright {
  background: #111;
  padding: 1.5rem 0;
  border-top: 1px solid #333;
}

.footer__copyright p {
  color: #ccc !important;
  margin: 0;
  font-size: 0.9rem;
}

/* Mobile Menu Styles */
.mobile__menu--container {
  position: fixed;
  top: 80px;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 100;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
}

body.menu-is-active .mobile__menu--container {
  opacity: 1;
  pointer-events: auto;
}

body.menu-is-active {
  overflow: hidden;
}

.mobile__menu {
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: white;
  margin-left: auto;
  overflow-y: auto;
  padding: 0;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}

.mobile-menu-list,
.mobile-submenu,
.mobile-products-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-item {
  border-bottom: 1px solid #eee;
}

.mobile-menu-link {
  display: block;
  padding: 18px 20px;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  background: white;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.mobile-menu-link:hover {
  color: #007cba;
  background-color: #f8f9fa;
}

.mobile-menu-arrow,
.family-arrow {
  float: right;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.mobile-submenu {
  display: none;
  background-color: #f8f9fa;
}

.mobile-submenu.active {
  display: block;
}

.mobile-submenu-item {
  border-bottom: 1px solid #e9ecef;
}

.mobile-submenu-link {
  display: block;
  padding: 14px 40px;
  color: #555;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  background: #f8f9fa;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.mobile-submenu-link:hover {
  color: #007cba;
  background-color: #e9ecef;
}

.mobile-products-list {
  display: none;
  background-color: #f1f3f4;
}

.mobile-products-list.active {
  display: block;
}

.mobile-products-list li {
  border-bottom: 1px solid #dee2e6;
}

.mobile-products-list a {
  display: block;
  padding: 12px 60px;
  color: #666;
  font-size: 14px;
  font-weight: normal;
  text-decoration: none;
  background: #f1f3f4;
  border: none;
  border-left: 3px solid transparent;
}

.mobile-products-list a:hover {
  color: #007cba;
  border-left-color: #007cba;
  background-color: #e9ecef;
}

.mobile-menu-item.active .mobile-menu-arrow,
.mobile-submenu-item.active .family-arrow {
  transform: rotate(180deg);
}

.mobile__menu * {
  background-image: none !important;
  background-color: inherit;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.mobile__menu ul {
  background: transparent;
}

.mobile__menu li {
  background: transparent;
  margin: 0;
}

.mobile__menu a,
.mobile__menu button {
  transition: all 0.2s ease;
}

.mobile__menu button {
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
}