@charset "utf-8";
/* CSS Document */
/* Default: Show sidebar, hide mobile bottom nav */
.sidebar {
    display: block;
    /* your existing sidebar styles */
}

.fixed-bottom-nav {
    display: none; /* hidden by default */
}

/* Mobile screens: Hide sidebar, show bottom nav */
@media (max-width: 768px) {
    .sidebar {
        display: none !important; /* completely hide sidebar on mobile */
    }

    .fixed-bottom-nav {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid #eee;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        padding: 8px 0;
    }
}

/* -------------------------------------------------
   2. Fixed bottom nav – same width as .container
   ------------------------------------------------- */
.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #666;
    font-size: 12px;
    flex: 1;
    transition: color 0.3s ease;
}

.nav-item.active,
.nav-item:hover {
    color: #2575fc;
}

.nav-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

/* Add padding to body so content isn't hidden under navbar */
body {
    padding-bottom: 70px !important; /* Must be > navbar height */
}

/* Responsive: hide labels on very small screens */
@media (max-width: 480px) {
    .nav-item span {
        font-size: 10px;
    }
    .nav-icon {
        width: 20px;
        height: 20px;
    }
}

/* Base alert styles */
.alert {
  padding: 12px 16px;
  margin: 10px 0;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
}

/* Warning Alert */
.alert-warning {
  background-color: #fffbf0;
  border-color: #ffd67a;
  color:red;
}

.alert-warning strong {
  color: #664d03;
}

/* Success Alert */
.alert-success {
  background-color: #f0fff4;
  border-color: #9ae6b4;
  color: #276749;
  font-weight:400;
}

.alert-success strong {
  color: #1e4c2e;
}
.feedback {
        margin-top: 15px;
        padding: 12px 16px;
        border-radius: 6px;
        font-weight: 500;
        display: none;
    }
    .feedback.success {
        background-color: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }
    .feedback.error {
        background-color: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }
    .required { color: #e32; }
<!-- responsivev form -->
 .responsive-form {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
    }
    .form-row {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    .form-group {
        flex: 1;
        min-width: 280px; /* Prevents fields from getting too narrow */
    }
    label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
    }
    .required {
        color: #dc3545;
    }
    input.form-control,
    select.form-control {
        width: 100%;
        padding: 0.65rem 1rem;
        border: 1px solid #ced4da;
        border-radius: 0.375rem;
        font-size: 1rem;
    }
    @media (max-width: 768px) {
        .form-row {
            flex-direction: column;
        }
        .form-group {
            min-width: 100%;
        }
    }
/* discover */
.marketing-explanation {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.problem-section, .solution-section {
    margin: 20px 0;
    padding: 15px;
}

.problem-section {
    background-color: #fff5f5;
    border-left: 4px solid #e74c3c;
}

.solution-section {
    background-color: #f0fff4;
    border-left: 4px solid #27ae60;
}

.problem-section h3, .solution-section h3 {
    margin-top: 0;
    color: #2c3e50;
}
ul1 {
    padding-left: 20px;
}

li1 {
    margin-bottom: 8px;
}
strong {
    color: #2c3e50;
}

	.nav-icon {
  vertical-align: middle;   /* or vertical-align: top; */
  margin-right: 8px;       /* optional: space between icon and text */
}

.select-control {
	width: 40% !important;
	padding: 10px 15px;
	border-radius: 4px;
	border: 1px solid #ddd;
	background: var(--light);
	min-width: 180px;
}
@media (max-width: 480px) {
	.select-control {
  width: 100% !important;
	}
}
.select-control {
  outline: none;                    /* Removes the default blue ring */
  border: 1px solid #ccc;           /* Your normal border */
  border-radius: 4px;
}

.select-control:focus {
  outline: none;                    /* Very important */
  border-color:#D9D9D9 !important;
  box-shadow: 0 0 5px rgba(255,0,0,0.5); /* Optional: make it more visible */
}

.search-group {
	display: flex;
	max-width: 400px;
	flex: 1;
	margin: 0 20px;
}

.search-group input {
	flex: 1;
	padding: 10px 15px;
	border: 1px solid #ddd;
	border-radius: 4px 0 0 4px;
	font-size: 14px;
}

.search-group button {
	background: var(--primary);
	color: var(--light);
	padding: 0 20px;
	border-radius: 0 4px 4px 0;
	font-weight: 600;
}

.search-container {
        margin: 20px auto;
        position: relative;
    }
    
    .search-input {
        width: 100%;
        padding: 12px 20px;
        font-size: 16px;
        border: 2px solid #ddd;
        border-radius: 4px;
        outline: none;
        transition: all 0.3s ease;
        box-sizing: border-box; /* Important for consistent width */
    }
    
    .search-input:focus {
        border-color: #4285f4;
        box-shadow: 0 0 8px rgba(66, 133, 244, 0.3);
    }
    
    .search-results {
        position: absolute;
		max-width:100%;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%; /* Make sure it takes full width of container */
		color:black;
        background: white;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        max-height: 400px;
        overflow-y: auto;
        z-index: 1000;
        display: none;
        box-sizing: border-box; /* Important for consistent width */
    }
    
    .search-result-item {
        
		padding:12px;
        border-bottom: 1px solid #eee;
        cursor: pointer;
        display: flex;
        align-items: center;
        transition: background-color 0.2s;
    }
    
    .search-result-item:hover {
        background-color: #f8f9fa;
    }
    
    .search-result-item:last-child {
        border-bottom: none;
    }
    
    .product-info {
        flex: 1;
    }
    .product-photo {
            width: 40px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
            margin-right: 12px;
        }
    .product-name {
		font-size: 16px;
        font-weight: bold;
        margin-bottom: 4px;
    }
    
    .product-category {
        color: #666;
        font-size: 12px;
    }
    
    .product-price {
        color: #e74c3c;
        font-weight: bold;
    }
    
    .no-results {
        padding: 20px;
        text-align: center;
        color: #666;
    }
    
    .loading {
        padding: 20px;
        text-align: center;
        color: #666;
    }
    
    .search-meta {
        padding: 12px 16px;
        font-size: 12px;
        color: #666;
        border-top: 1px solid #eee;
        background-color: #f8f9fa;
    }
