:root {
    --proapro-green: #10b981;
    --proapro-green-hover: #059669;
    --proapro-dark: #1f2937;
    --proapro-gray: #4b5563;
    --proapro-light-gray: #f9fafb;
}



/* Header Styles */
.proapro-header {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

.logo-circle {
    width: 40px;
    height: 40px;
    background-color: var(--proapro-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-circle span {
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--proapro-dark);
    margin-left: 8px;
}

.logo-accent {
    color: var(--proapro-green);
}

.nav-link-custom {
    color: var(--proapro-gray) !important;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link-custom:hover {
    color: var(--proapro-dark) !important;
}

.cta-button {
    background-color: var(--proapro-green);
    border: none;
    color: white;
    padding: 8px 24px;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: var(--proapro-green-hover);
}

/* Secondary Navigation */
.secondary-nav {
    background-color: var(--proapro-dark);
    color: white;
    position: relative;
}

.nav-btn-primary {
    background-color: #111827!important;
    color: #f7f0c3!important;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.nav-btn-primary:hover,
.nav-btn-primary.active {
    background-color: #374151;
    color: white;
}

.nav-btn-secondary {
    background-color: #374151;
    color: #f7f0c3;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.nav-btn-secondary:hover {
    background-color: #4b5563;
    color: white;
}

.search-input-custom {
    border-radius: 6px;
    border: none;
    padding: 8px 16px 8px 40px;
}

.search-input-custom:focus {
    box-shadow: 0 0 0 2px var(--proapro-green);
    border: none;
}

/* Mega Menu Styles */
.mega-menu {
    background-color: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-sidebar {
    background-color: var(--proapro-light-gray);
    border-right: 1px solid #e5e7eb;
    min-height: 400px;
}

.menu-category {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-right: 3px solid transparent;
    color: var(--proapro-gray);
}

.menu-category:hover {
    background-color: #f3f4f6;
}

.menu-category.active {
    background-color: #e5e7eb;
    border-right-color: var(--proapro-green);
    font-weight: 600;
}

.category-icon {
    margin-right: 12px;
    color: #6b7280;
}

.menu-category.active .category-icon {
    color: var(--proapro-green);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    color: var(--proapro-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.menu-item:hover {
    color: var(--proapro-green);
    text-decoration: none;
}

.menu-item-count {
    color: #9ca3af;
    font-size: 12px;
}

.menu-column-title {
    font-weight: 600;
    color: var(--proapro-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 256px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.breadcrumb-custom {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 1rem;
}

.breadcrumb-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: white;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
}

/* Catalog Cards */
.catalog-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.catalog-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.catalog-card.inspiration {
    background-color: #fed7aa;
}

.catalog-card.epicerie {
    background-color: #bbf7d0;
}

.catalog-card.frais {
    background-color: #99f6e4;
}

.catalog-card.chefs {
    background-color: #fef3c7;
}

.catalog-image {
    height: 192px;
    overflow: hidden;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.catalog-card:hover .catalog-image img {
    transform: scale(1.05);
}

.catalog-badge {
    font-size: 12px;
    font-weight: 500;
    color: var(--proapro-gray);
    margin-bottom: 0.25rem;
}

.catalog-date {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.catalog-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--proapro-dark);
    line-height: 1.25;
}

/* EGALIM Section */
.egalim-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--proapro-dark);
    margin-bottom: 1rem;
}

.egalim-description {
    color: var(--proapro-gray);
}

/* Dropdown Enhancements */
.dropdown-toggle::after {
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Custom positioning for search icon */
.search-icon-wrapper {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    z-index: 10;
}

/* Main content background */
.main-content {
    background-color: var(--proapro-light-gray);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .mega-menu-sidebar {
        min-height: auto;
    }

    .logo-text {
        font-size: 18px;
    }
}
/* card product*/
.product-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    background: white;

}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.product-title {
    font-size: 1rem!important;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
    min-height: 2.6em;
}

.product-brand {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.product-ref {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.product-unit {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.btn-view-product {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
    padding: 8px 20px;
    font-size: 0.9rem;
    border-radius: 4px;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-view-product:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    color: white;
}

.products-container {
    padding: 40px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.product-count {
    color: #666;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 40px;
}
.text-b
{
    color:#f7f0c3!important;
}
