/***Start Footer Section***/
#wpfooter {
  padding: 0;
  position: unset !important;
}
#wpfooter p {
  margin: 0;
  line-height: inherit;
}
#footer-upgrade {
  display: none;
}
.gsff-free .gsc-admin-footer-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  margin-top: 40px;
  border-top: 1px solid #e5e7eb;
  background: #fff;
  font-size: 12.5px;
  color: #6b7280;
}
/* Left */
.gsff-free .gsc-footer-left {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
/* Stars */
.gsff-free .gsc-stars {
  color: #f59e0b;
  letter-spacing: 1px;
}
/* Links */
.gsff-free .gsc-admin-footer-bar a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}
.gsff-free .gsc-admin-footer-bar a:hover {
  text-decoration: underline;
}
/* Right */
.gsff-free .gsc-footer-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
/* Social */
.gsff-free .gsc-footer-social {
  display: flex;
  gap: 10px;
}
.gsff-free .gsc-footer-social a {
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.gsff-free .gsc-footer-social a:hover {
  background: #f3f4f6;
  color: #111827;
}
.gsff-free .gsc-footer-social svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
/* Version */
.gsff-free .gsc-footer-version {
  font-size: 12px;
  color: #9ca3af;
}
/* Main Container */
.gsff-free .assistant-widget {
  position: fixed;
  bottom: 48px;
  right: 25px;
  z-index: 9999;
}
/* Bear Icon */
.gsff-free .assistant-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid #199436;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.gsff-free .assistant-icon:hover {
  transform: scale(1.1);
}
.gsff-free .assistant-icon img {
  width: 30px;
  height: 30px;
}
/* Popup Menu */
.gsff-free .assistant-menu {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: max-content;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  padding: 10px;
  display: none;
  flex-direction: column;
  animation: slideUp 0.3s ease;
}
/* Show Menu */
.gsff-free .assistant-menu.active {
  display: flex;
}
/* Menu Items */
.gsff-free .menu-item {
  text-decoration: none;
  color: #333;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  transition: background 0.2s;
}
.gsff-free .menu-item:hover {
  background: #f0f0f0;
}
/* Animation */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* SVG Icons */
.gsff-free .menu-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
}
.gsff-free .menu-icon svg {
  width: 18px;
  height: 18px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* Hover icon color */
.gsff-free .menu-item:hover .menu-icon {
  color: #15803d;
}
/***End Footer Section***/
