@import url('https://fonts.googleapis.com/css2?family=Cedarville+Cursive&family=Cinzel:wght@400..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Lilita+One&family=Manrope:wght@200..800&family=Oswald:wght@200..700&display=swap');

/* 1. Base Font */
body {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  color: #212529;
  background-color: #f8f9fa;
  font-size: 12px;
  line-height: 1.6;
}

/* 2. Headings */
h1, h2, h3, h4, h5, h6 {
 font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  color: #343a40;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

/* 3. Paragraphs & Text */
p {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 0.75rem;
}

b, strong {
  font-weight: 600;
  color: #212529;
}

/* 4. Text Utility */
.text-muted {
  color: #6c757d !important;
}

.text-primary {
  color: #1d4ed8 !important;
}

.text-success {
  color: #198754 !important;
}

.text-danger {
  color: #dc3545 !important;
}


.navbar-brand {
    font-family: 'Luckiest Guy', cursive;
    font-size: 26px;
  }

  .gradient-header {
    background: linear-gradient(to right, #5de0e6, #004aad);
    padding: 10px 0;
  }
  
  .profile-pic {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid #fff;
  }

  .dropdown-menu a {
    font-size: 15px;
  }

  .nav-link {
    font-weight: 500;
  }

  .dropdown-toggle::after {
    margin-left: 5px;
  }
  
  .custom-link {
    position: relative;
    color: #000;
    transition: 0.3s ease;
  }
  
  .custom-link:hover {
    color: #526bf4;
  }
  
  .custom-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #526bf4;
    left: 0;
    bottom: 0;
    transition: 0.4s ease;
  }
  
  .custom-link:hover::after {
    width: 100%;
  }
  
  /* Optional: Smooth dropdown animation */
  .dropdown-menu {
    transition: all 0.3s ease-in-out;
  }
  
/* Enable dropdown on hover */
.hover-dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* Removes any delay or jump */
  }
  
  /* Optional: improve transition on hover */
  .dropdown-menu {
    transition: all 0.3s ease-in-out;
    pointer-events: auto;
  }
  
/* Icon color inside Tools dropdown */
.dropdown-menu .dropdown-item i {
  color: #0d6efd; /* Bootstrap primary color - adjust as needed */
  transition: color 0.3s ease;
}

/* Font hover effect */
.dropdown-menu .dropdown-item:hover {
  color: #0d6efd;
  font-weight: 600;
  background-color: #f8f9fa; /* Light background on hover */
}

/* Optional: Change icon color on hover too */
.dropdown-menu .dropdown-item:hover i {
  color: #6610f2; /* Purple highlight on hover */
}

.btn-gradient-red {
            background: linear-gradient(to right, #ff7456, #ff7456);
            color: white;
            font-weight: 600;
            border-radius: 15px;
            transition: 0.3s;
            border: none;
        }

        .btn-gradient-red:hover {
            opacity: 0.9;
            transform: scale(1.02);
        }

        .bi {
            font-size: 1.3rem;
            cursor: pointer;
        }

        .bg-light {
            background-color: #f9f9f9 !important;
        }


        .recent-basket {
            background: #ffffff;
            border: 1px solid #eee;
            transition: box-shadow 0.3s ease-in-out;
        }

        .basket-item {
            background-color: #f8f9fa;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .basket-item:hover {
            background-color: #fff3f3;
            box-shadow: 0 4px 15px rgba(255, 0, 0, 0.1);
            transform: scale(1.01);
        }

        .basket-item .icon-set i {
            color: #dc3545;
            /* Bootstrap danger red */
            font-size: 1.2rem;
            transition: transform 0.2s ease, color 0.3s ease;
        }

        .basket-item .icon-set i:hover {
            color: #b30000;
            transform: scale(1.2);
        }


/* Hide logo inside navbar initially */
#mainNavbar .navbar-brand {
  display: none;
}

/* On scroll — fix navbar to top, show logo on left, move nav items to right */
#mainNavbar.scrolled {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1050;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease;
}

/* Show logo in navbar when scrolled */
#mainNavbar.scrolled .navbar-brand {
  display: block;
}

/* Move nav items to right when scrolled */
#mainNavbar.scrolled .navbar-collapse {
  justify-content: flex-end;
}

/* Hide header when scrolled */
#mainHeader.scrolled {
  display: none;
}

/* Smooth slide down animation */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
#mainNavbar .navbar-collapse {
  transition: all 0.3s ease;
}

#mainNavbar .navbar-brand img {
  transition: all 0.3s ease;
}


  .features i {
      font-size: 2.5rem;
      color: #00d4ff;
    }
    .dashboard-preview, .testimonial {
      background: #f8f9fa;
      padding: 60px 0;
    }
  
