.footer-image {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  min-height: 40px;
  min-width: 40px;
}

.footer-icon-small {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  max-width: 24px;
  max-height: 24px;
}

.footer-image.h-12.w-\[172px\] {
  aspect-ratio: 172 / 48;
  min-width: 172px;
  min-height: 48px;
}

.title-list-footer {
  font-family: 'Quantum', sans-serif;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  font-size: 16px;
}

@media (min-width: 1280px) {
  .title-list-footer {
    font-size: 20px;
  }
}

.footer-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.list-footer-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-item-text {
  font-family: 'Bourgeois', sans-serif;
  font-weight: 500;
  line-height: 20px;
  font-size: 18px;
}

.social-networks {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 1rem;
}

.main-content {
  width: 100%;
  max-width: 1200px;
}

.accordions-container {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 380px;
  width: 100%;
}

.styled-accordion {
  border: 0;
  box-shadow: none;
  background: transparent;
  background-color: #0433ff !important;
  color: white !important;
}

.accordion-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 16px;
  color: white;
  transition: background-color 0.2s ease;
}

.accordion-summary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.accordion-summary.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.accordion-summary .summary-content {
  flex: 1;
}

.accordion-summary .summary-grid {
  display: grid;
  grid-template-columns: 32px auto;
  align-items: center;
  gap: 16px;
}

.accordion-summary .icon {
  height: 40px;
  width: 40px;
}

.accordion-summary .icon-fit {
  width: fit-content;
}

.expand-icon {
  color: white;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.expand-icon.rotated {
  transform: rotate(180deg);
}

.accordion-details {
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  max-height: 0;
  opacity: 0;
}

.accordion-details.expanded {
  max-height: 1000px;
  opacity: 1;
}

.accordion-details .details-content {
  padding: 16px;
  padding-top: 0;
}

.accordion-details .list-footer-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-details .categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.accordion-details .footer-item-text {
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.accordion-details .footer-item-text:hover {
  opacity: 0.8;
}

.accordion-details .social-networks {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.accordion-details .social-networks:hover {
  opacity: 0.8;
}

.chevron-down {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid white;
  transition: transform 0.2s ease;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.custom-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: fit-content;
  height: 100%;
  background-color: white;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.custom-drawer.open {
  transform: translateX(0);
}

.custom-drawer.anchor-right {
  left: auto;
  right: 0;
  transform: translateX(100%);
}

.custom-drawer.anchor-right.open {
  transform: translateX(0);
}
