/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0px;
    padding: 0px;
    background-color: #f4f4f4;
    box-sizing: border-box;
}

/* Layout */
/*.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0px;
}*/

.main-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.content {
    flex: 1; /* Take up remaining space */
    padding: 20px;
}

/* Home Page */
.home-page {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #f8f8f8;
}

/* Features Section */
.features {
    text-align: center;
    padding: 40px 0;
    background-color: #fff;
}

.features h2 {
    margin-bottom: 20px;
}

.feature-box {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 200px;
}

.feature-box img.feature-icon {
    max-width: 50px;
    margin-bottom: 10px;
}

.feature-box h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
}

.feature-box p {
    font-size: 14px;
    color: #555;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
   /* color: black;*/
}

.contact-item img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

/* Map Styling */
#map {
    height: 500px;
    width: 100%;
    background-color: lightgrey;
    margin-top: 20px;
}


.right-sidebar {
    flex: 1;
    padding: 20px;
    border-left: 1px solid #ddd;
    background-color: #f8f8f8;
}
* Top Bar */
.top-bar {
    background-color: #004aad; /* Dark blue color */
    color: white;
    font-size: 14px;
    padding: 10px 0;
    margin: 0; /* Ensure no gap above or below */
    box-sizing: border-box;
    text-align: center; /* Center text horizontally */
    display: flex; /* Flexbox for vertical alignment */
    justify-content: center; /* Horizontal centering with Flexbox */
    align-items: center; /* Vertical centering with Flexbox */

}

/* Main Header */
.main-header {
    background-color: white; /* Same dark blue color */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    margin: 0; /* Ensure no gap below the top-bar */
    box-sizing: border-box;
    color: white;
}

/* Logo */
.logo img {
    max-height: 100px; /* Adjust logo size */
    display: block;
}

/* Search Bar */
.search-bar {
    flex: 1; /* Take up remaining space */
    margin: 0 20px;
    display: flex;
    align-items: center; /* Center input and button vertically */
}

.search-bar input {
    flex: 1; /* Stretch input to fill space */
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px; /* Rounded corners */
    box-sizing: border-box;
}

.search-bar button {
    padding: 10px 20px;
    background-color: orange;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0; /* Rounded corners */
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.search-bar button:hover {
    background-color: #e67e22; /* Slightly darker orange on hover */
}
/* Action Buttons */
.action-buttons {
    display: flex;
    align-items: center;
    gap: 20px; /* Add space between buttons */
}

.action-buttons a {
    text-decoration: none; /* Remove underline */
    color: white;
    text-align: center;
    font-size: 14px;
    display: flex;
    flex-direction: column; /* Stack icon and text */
    align-items: center; /* Center content */
}

.action-buttons img {
    max-height: 30px; /* Adjust icon size */
    margin-bottom: 5px; /* Add spacing below icons */
}

/* Hover Effect for Action Buttons */
.action-buttons a:hover {
    color: #004aad; /* Change text color on hover */
    transition: color 0.3s ease;
}


/* Remove any unintended dot before the cart icon */
.cart-link::before {
    content: none !important;
    display: none !important;
}

/* Remove the automatic bullet/marker from the cart item */
.cart-link {
    list-style: none !important;  /* Removes default bullet points */
}

/* Ensure the cart icon and text align correctly */
.cart-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Adjust shopping cart icon size */
.cart-link i {
    font-size: 20px !important;  /* Adjust size */
    color: white !important;
}

/* Adjust cart count text size */
#cart-count {
    font-size: 14px;
    font-weight: bold;
    color: black !important;
}

.whatsapp-float {
    position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
}
.whatsapp-float img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.whatsapp-popup {
    position: fixed;
    bottom: 120px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}
.whatsapp-popup .btn {
    background: white;
    color: #25D366;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
.close-popup {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}


.user-menu {
  position: relative;
}

.user-dropdown-menu {
  display: none;
  top: 100%;
  right: 0;
  min-width: 200px;
  z-index: 1000;
}

.user-menu:hover .user-dropdown-menu {
  display: block;
}
/* Footer */
footer {
    background-color: rgb(23 63 4);
    color: white;
    text-align: center;
    padding: 10px 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}


.footer-features {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
gap: 20px;
margin-bottom: 20px;
}


/* Footer Container */
.footer {
    background-color: #f8f8f8;
    padding: 40px 20px;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}




/* Contact Section */
.footer-contacts {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}


.footer-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-column {
    flex: 1 1 calc(25% - 20px);
    text-align: left;
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
    /*color: black*/
}

.footer-column p {
    margin-top: 0;
    margin-bottom: 1rem;
}


/*.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #333;
}*/

.footer-column ul li a:hover {
    color: white;
    text-decoration: underline;
}

.footer-column ul li a {
    --tw-text-opacity: 1;
    color: rgb(191 219 254 / var(--tw-text-opacity, 1));
}

.footer-column form {
   display: flex;
    gap: 5px;
    margin-top: 10px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.footer-column Button{
background: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    padding-top: 0px;
    padding-bottom: 0px;
    height: 40px;
}

.footer-column input, select {
    padding: 6px 10px;
    margin-bottom: 10px;
    width: 100%;
    font-size: 16px;
    box-sizing: border-box;
}

.footer-column .app-icons img {
    width: 100px;
    height: 100px;
    margin-right: 5px;
}


/* Payment Logos Section */
.footer-payments {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    border-radius: 20%;
}

.footer-payments img {
    width: 80px;
    height: auto;
}


/* Navbar */
/*.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
}

.navbar .logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bold;
}

.navbar nav a {
    margin-left: 15px;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar nav a:hover {
    color: #fff;
    background-color: #007bff;
}*/

#sidebar.collapsed {
  display: none;
}

@media (min-width: 768px) {
  html, body {
    font-size: 14px;  /* or your preferred size */
    line-height: 1.5rem;
  }
}

/* Fix for content visibility - add to your base.css */
body {
    font-family: Arial, sans-serif;
    margin: 0px;
    padding-top: 120px; /* Add this - accounts for top-bar + main-header */
    background-color: #f4f4f4;
    box-sizing: border-box;
}

/* Alternative: add spacing to main content containers */
.container, main {
    margin-top: 20px;
    padding-top: 20px;
}

/* Specific fix for dashboard pages */
.dashboard-content {
    padding-top: 30px;
}