html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

body.no-scroll {
  overflow: hidden;
}

/* Mobile Accordion Styles */
.site-mobile-category-item.has-children {
  list-style: none;
  padding: 0 15px;
  /* Ensure no bullets */
}

.site-mobile-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  /* Match existing link padding if possible */
  cursor: pointer;
  font-weight: 600;
  color: var(--color-text, #0f172a);
  border-bottom: 1px solid var(--color-border, rgba(15, 23, 42, 0.1));
}

.site-mobile-category-header .dropdown-arrow {
  transition: transform 0.2s ease;
}

.site-mobile-category-header.open .dropdown-arrow {
  transform: rotate(180deg);
}

.site-mobile-submenu {
  list-style: none;
  padding-left: 0;
  margin: 0;
  overflow: hidden;
  background-color: var(--color-surface-soft, #f8fafc);
}

.site-mobile-submenu li {
  border-bottom: 1px solid var(--color-border, rgba(15, 23, 42, 0.05));
  padding-left: 1rem;
}

/* Mobile User Menu Styles */
.mobile-user-section {
  padding: 0 1rem;

}

.mobile-user-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  cursor: pointer;
}

.mobile-user-header .dropdown-arrow {
  transition: transform 0.2s ease;
}

.mobile-user-header.open .dropdown-arrow {
  transform: rotate(180deg);
}

.site-nav-link-child {
  padding-left: 2rem !important;
  /* Indent sub-items */
  display: block;
  padding: 0.75rem 0;
  color: var(--color-text-muted, #64748b);
  text-decoration: none;
}

/* Floating Like Animation */
.floating-heart {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #e53935;
  font-weight: bold;
  font-size: 1.2rem;
  pointer-events: none;
  animation: floatUp 1s ease-out forwards;
  z-index: 100;
}

@keyframes floatUp {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -150%) scale(1.5);
  }
}