/* Navbar styling */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  }
  
  .navbar-brand {
  font-size: 1.75rem;
  font-weight: 800;
  color: #6f42c1;
  letter-spacing: 2px;
  text-transform: uppercase;
  }
  
  .navbar-brand:hover {
  color: #4e2a99;
  }
  
  .navbar-nav .nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-right: 1.5rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
  color: #6f42c1;
  }
  
  .navbar-nav .nav-item .btn {
  background-color: #6f42c1;
  color: white;
  padding: 0.5rem 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 30px;
  transition: background-color 0.3s ease;
  }
  
  .navbar-nav .nav-item .btn:hover {
  background-color: #5526B0;
  }
  
  /* Navbar collapse for mobile */
  @media (max-width: 768px) {
  .navbar-collapse {
  margin-top: 20px;
  }
  .navbar-nav {
  text-align: center;
  }
  .navbar-nav .nav-item {
  margin-bottom: 1rem;
  }
  }
  
  body {
    
    font-family: 'Arial', sans-serif;
  }
  
  
  @media (max-width: 991.98px) {
  .order-now-btn {
    margin-left: -12px !important;
  }
  }


/* Custom purple background for burger and white lines FOR PHONE NAVBAR*/
.custom-toggler {
  background-color: #6f42c1; /* Purple */
  border: none;
  padding: 8px;
  border-radius: 6px;
}

/* Override Bootstrap's default icon */
.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}






/* hhhhhhhhhhhhhhhhhh */






.footer {
  background-color: #5526B0;
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.order-now-btn{
background-color: #5526B0 !important;
}


 /* Purple theme and spacing adjustments */
 .bg-purple {
  background-color: #5526B0;
}

.social-icon img {
  transition: transform 0.3s ease-in-out;
}

.social-icon img:hover {
  transform: scale(1.1);
}



/* Adjusting text and layout for mobile responsiveness */
@media (max-width: 767px) {
  .footer .container-fluid {
    padding: 0 1rem;
  }

  .footer .col-md-4 {
    text-align: center;
  }

  .footer h5 {
    font-size: 1.2rem;
  }

  .footer .list-unstyled li {
    margin-bottom: 10px;
  }

  .footer .social-icon img {
    height: 40px;
  }
}

/* Move the "Designed by Ikageng" text to the very bottom */
body, html {
  height: 100%;
  margin: 0;
}

footer {
  position: relative;
  margin-top: auto;
}

.container-fluid.bg-dark {
  padding-bottom: 0 !important;
  margin-top: 0;
}

/* Separate Purple and Black Footer Sections */
.footer-top {
background-color: #5526B0; /* Your brand purple */
opacity: 1; /* Don't reduce opacity globally or it affects child elements */
background-image:
linear-gradient(135deg, #6f42c1 25%, transparent 25%),
linear-gradient(225deg, #6f42c1 25%, transparent 25%),
linear-gradient(45deg, #6f42c1 25%, transparent 25%),
linear-gradient(315deg, #6f42c1 25%, #5526B0 25%);
background-position: 4px 0, 4px 0, 0 0, 0 0;
background-size: 4px 4px;
background-repeat: repeat;
color: white;
}


.footer-bottom {
  background-color: #000000;
  color: white;
}








 /* Side Drawer Style */
 /* Side Drawer Style */
 .cart-drawer {
  position: fixed;
  top: 80px;
  right: -400px;
  width: 400px;
  height: calc(100% - 80px);
  background: rgba(255, 255, 255, 0.8); /* Slightly transparent white */
  backdrop-filter: blur(12px); /* Glass effect */
  border-left: 2px solid rgba(0, 0, 0, 0.05); /* Softer border */
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  transition: right 0.3s ease;
  z-index: 1050;
  padding: 1rem;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  }
  
  .cart-drawer.open {
    right: 0;
  }
  
  .cart-drawer .cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .cart-drawer .cart-header h4 {
    margin: 0;
  }
  
  .cart-drawer .cart-items {
    max-height: 70%;
    overflow-y: auto;
    margin-top: 1rem;
  }
  
  .cart-drawer .cart-items ul {
    padding: 0;
    list-style: none;
  }
  
  .cart-drawer .cart-items li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .cart-drawer .cart-items img {
    width: 50px;
    height: 50px;
    object-fit: cover;
  }
  
  .cart-drawer .cart-footer {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
  }
  
  .cart-drawer .cart-footer .btn {
    width: 48%;
  }
  
  .open-cart-btn {
    position: fixed;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 80px;
    background: linear-gradient(145deg, rgba(72, 61, 139, 0.85), rgba(100, 89, 200, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px 0 0 16px;
    cursor: pointer;
    z-index: 1001;
    box-shadow:
      0 12px 24px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.25s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  
  .open-cart-btn .arrow-icon {
    width: 180px;  /* Increased width of the arrow */
    height: 150px;  /* Adjusted height */
  }
  
  .open-cart-btn:hover {
    background: linear-gradient(145deg, rgba(100, 89, 200, 1), rgba(72, 61, 139, 1));
    box-shadow:
      0 16px 32px rgba(0, 0, 0, 0.25),
      inset 0 2px 0 rgba(255, 255, 255, 0.2);
  }
  
  @media (max-width: 576px) {
    .open-cart-btn .arrow-icon {
      width: 1400px;  /* Increased width of the arrow on mobile */
      height: 280px;  /* Adjusted height for mobile */
    }
    
    .open-cart-btn {
      width: 45px;  /* Keep the button size small on mobile */
      height: 78px;
      padding: 0;
    }
  }
  
  
  .shopping{
  font-weight: bold !important;
  color: #421c91;
  
  }




  .cart-footer {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    background-color: #f9fafb; /* soft background */
    border-top: 1px solid #e5e7eb;
  }
  
  .cart-btn {
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  }
  
  .proceed-btn {
    background-color: #FACC15; /* Soft Gold */
    color: #1F2937; /* Dark gray for contrast */
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
  }
  
  .proceed-btn:hover {
    background-color: #EAB308; /* Deeper gold */
  }
  
  .clear-btn {
    background-color: #fd3300; /* Cool Gray */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
  }
  
  .clear-btn:hover {
    background-color: #8b6e64; /* Slate Gray */
  }
  
  





  .cart-remove-btn {
    background: transparent;
    border: none;
    color: #dc3545;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  
  .cart-remove-btn:hover {
    color: #a71d2a;
  }
  

.dark{
  background-color: #000000;
}