@charset "UTF-8";
.catalogue-stat {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(21, 55, 180, 0.6);
  padding: 10px 15px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  width: 50%; }
  @media (max-width: 1399px) {
    .catalogue-stat {
      width: 100%; } }
  .catalogue-stat a {
    color: #ffffff; }
  .catalogue-stat i {
    color: #ffffff; }
  .catalogue-stat strong {
    display: block;
    font-size: 1.3rem;
    color: #ffffff; }
  .catalogue-stat span {
    font-size: 1.1rem;
    opacity: 1;
    color: #ffffff; }

.archive-produit .catalogue-header {
  background-image: url(../../images/hero-archive.jpg) !important; }

.catalogue-header {
  background: #1537b4;
  position: relative;
  overflow: hidden; }
  .catalogue-header .lead {
    font-size: 1rem; }
  .catalogue-header .catalogue-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    width: auto; }
    .catalogue-header .catalogue-stat i {
      color: #ffc107; }
    .catalogue-header .catalogue-stat strong {
      display: block;
      font-size: 1.5rem;
      color: #ffc107;
      line-height: 1rem; }
    .catalogue-header .catalogue-stat span {
      font-size: 0.875rem;
      opacity: 0.9;
      color: white !important; }
  .catalogue-header:after {
    background: linear-gradient(135deg, #0a1b59 0%, #1537b4 50%, rgba(10, 27, 89, 0.8) 100%) !important; }

.floating-cart {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000; }
  .floating-cart .btn {
    position: relative;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: bounce 2s infinite; }
    .floating-cart .btn .cart-count {
      position: absolute;
      top: -5px;
      right: -5px;
      background: #dc3545;
      color: white;
      border-radius: 50%;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: bold; }

@keyframes bounce {
  0%, 100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-10px); } }
.catalogue-main {
  padding-top: 3rem;
  padding-bottom: 3rem; }
  @media (max-width: 767.98px) {
    .catalogue-main {
      padding-top: 0rem; } }

.filters-wrapper {
  top: 100px; }
  .filters-wrapper .filter-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease; }
    .filters-wrapper .filter-card:hover {
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
    .filters-wrapper .filter-card .filter-title {
      background: linear-gradient(135deg, #1537b4 0%, #102986 100%);
      color: white;
      padding: 15px;
      margin: 0;
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between; }
      .filters-wrapper .filter-card .filter-title i {
        transition: transform 0.3s ease; }
      .filters-wrapper .filter-card .filter-title[aria-expanded="false"] i.fa-chevron-down {
        transform: rotate(-90deg); }

@media (min-width: 992px) {
  .filters-wrapper.sticky-lg-top {
    z-index: 999 !important; } }
.catalogue-toolbar {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); }
  .catalogue-toolbar .btn-group .btn.active {
    background: #1537b4;
    color: white;
    border-color: #1537b4; }

.featured-banner {
  background: linear-gradient(135deg, #1537b4 0%, #1537b4 100%);
  padding: 30px;
  border-radius: 15px;
  position: relative;
  overflow: hidden; }
  .featured-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%; }
  .featured-banner h3, .featured-banner p {
    position: relative;
    z-index: 2; }

.catalogue-product-card {
  background: white;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
  position: relative; }
  .catalogue-product-card:hover {
    transform: translateY(-5px); }
    .catalogue-product-card:hover .product-overlay {
      opacity: 1; }
    .catalogue-product-card:hover .product-image img {
      transform: scale(1.1); }
  .catalogue-product-card .product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: flex;
    gap: 5px;
    flex-wrap: wrap; }
  .catalogue-product-card .product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border: 1px solid #dae0e5;
    border-radius: 6px; }
    .catalogue-product-card .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      padding: .5rem 1rem; }
    .catalogue-product-card .product-image .product-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(21, 55, 180, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease; }
    .catalogue-product-card .product-image:hover .product-overlay {
      opacity: 1; }
  .catalogue-product-card .product-info {
    padding: 20px; }
    .catalogue-product-card .product-info .product-ref {
      color: #6c757d;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px; }
    .catalogue-product-card .product-info .product-name {
      color: #1537b4;
      font-size: 1rem;
      font-weight: 600;
      margin: 10px 0;
      min-height: 50px;
      text-transform: uppercase; }
    .catalogue-product-card .product-info .product-description {
      font-size: 0.875rem;
      color: #6c757d;
      margin-bottom: 15px;
      min-height: 40px; }
    .catalogue-product-card .product-info .product-specs {
      display: flex;
      gap: 15px;
      margin-bottom: 15px;
      font-size: 0.875rem;
      color: #343a40; }
      .catalogue-product-card .product-info .product-specs span {
        display: flex;
        align-items: center;
        gap: 5px; }
        .catalogue-product-card .product-info .product-specs span i {
          color: #ffc107;
          font-size: 0.875rem; }
    .catalogue-product-card .product-info .product-actions {
      display: flex;
      gap: 10px; }
      .catalogue-product-card .product-info .product-actions .btn {
        flex: 1;
        font-size: 0.875rem;
        padding: 8px 12px; }
        .catalogue-product-card .product-info .product-actions .btn.add-to-cart {
          font-weight: 600; }

#products-grid.list-view {
  display: block; }
  #products-grid.list-view > div {
    width: 100% !important;
    max-width: none !important;
    margin-bottom: 20px; }
  #products-grid.list-view .catalogue-product-card {
    display: flex;
    flex-direction: row;
    height: auto;
    min-height: 250px; }
    #products-grid.list-view .catalogue-product-card:hover {
      transform: translateY(-5px); }
    #products-grid.list-view .catalogue-product-card .product-badges {
      top: 15px;
      left: 15px; }
    #products-grid.list-view .catalogue-product-card .product-image {
      width: 300px;
      flex-shrink: 0;
      height: 250px; }
      @media (max-width: 767.98px) {
        #products-grid.list-view .catalogue-product-card .product-image {
          width: 150px;
          height: 150px; } }
      #products-grid.list-view .catalogue-product-card .product-image .product-overlay .btn {
        font-size: 0.875rem;
        padding: 8px 16px; }
    #products-grid.list-view .catalogue-product-card .product-info {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 25px; }
      #products-grid.list-view .catalogue-product-card .product-info .product-name {
        min-height: auto;
        margin: 8px 0 12px;
        font-size: 1.25rem; }
        #products-grid.list-view .catalogue-product-card .product-info .product-name a {
          color: #1537b4;
          text-decoration: none;
          transition: color 0.3s ease; }
          #products-grid.list-view .catalogue-product-card .product-info .product-name a:hover {
            color: #102986; }
      #products-grid.list-view .catalogue-product-card .product-info .product-description {
        min-height: auto;
        margin-bottom: 12px;
        flex-grow: 1;
        max-width: 100%;
        line-height: 1.5; }
      #products-grid.list-view .catalogue-product-card .product-info .product-specs {
        margin-bottom: 12px;
        flex-wrap: wrap;
        gap: 10px; }
        #products-grid.list-view .catalogue-product-card .product-info .product-specs span {
          background: rgba(248, 249, 250, 0.8);
          padding: 4px 10px;
          border-radius: 4px;
          font-size: 0.8rem; }
      #products-grid.list-view .catalogue-product-card .product-info .product-actions {
        margin-top: auto;
        max-width: 400px; }
        @media (min-width: 768px) {
          #products-grid.list-view .catalogue-product-card .product-info .product-actions {
            flex-direction: row;
            gap: 12px; } }
        #products-grid.list-view .catalogue-product-card .product-info .product-actions .btn {
          padding: 10px 20px;
          font-size: 0.9rem; }
  #products-grid.list-view .catalogue-product-card {
    animation: slideInLeft 0.3s ease; }

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px); }
  to {
    opacity: 1;
    transform: translateX(0); } }
@media (max-width: 575.98px) {
  #products-grid.list-view .catalogue-product-card {
    flex-direction: column; }
    #products-grid.list-view .catalogue-product-card .product-image {
      width: 100%;
      height: 200px; }
    #products-grid.list-view .catalogue-product-card .product-info {
      padding: 15px; }
      #products-grid.list-view .catalogue-product-card .product-info .product-actions {
        flex-direction: column;
        width: 100%; }
        #products-grid.list-view .catalogue-product-card .product-info .product-actions .btn {
          width: 100%; } }
#products-grid {
  transition: all 0.3s ease; }
  #products-grid .catalogue-product-card {
    transition: all 0.3s ease; }

.catalogue-toolbar .btn-group .btn {
  position: relative;
  overflow: hidden; }
  .catalogue-toolbar .btn-group .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(21, 55, 180, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s; }
  .catalogue-toolbar .btn-group .btn:hover::before {
    width: 100%;
    height: 100%; }
  .catalogue-toolbar .btn-group .btn.active {
    background: #1537b4;
    color: white;
    border-color: #1537b4; }
    .catalogue-toolbar .btn-group .btn.active::before {
      background: rgba(255, 255, 255, 0.1); }

.list-view-enhanced #products-grid.list-view .catalogue-product-card {
  border: 1px solid #e9ecef; }
  .list-view-enhanced #products-grid.list-view .catalogue-product-card .product-image {
    border-right: 1px solid #e9ecef; }
    @media (max-width: 575.98px) {
      .list-view-enhanced #products-grid.list-view .catalogue-product-card .product-image {
        border-right: none;
        border-bottom: 1px solid #e9ecef; } }

.offcanvas .offcanvas-header h5 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase; }
.offcanvas .cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 0; }
.offcanvas .cart-footer {
  border-top: 2px solid #e9ecef;
  padding-top: 20px;
  margin-top: auto; }

.pagination .page-link {
  color: #1537b4;
  border-color: #dee2e6;
  padding: 10px 15px;
  font-weight: 500; }
  .pagination .page-link:hover {
    background: rgba(21, 55, 180, 0.1);
    border-color: #1537b4; }
  .pagination .page-link:focus {
    box-shadow: 0 0 0 0.25rem rgba(21, 55, 180, 0.25); }
.pagination .page-item.active .page-link {
  background: #1537b4;
  border-color: #1537b4;
  color: #ffffff; }

.breadcrumb-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); }
  .breadcrumb-section .breadcrumb .breadcrumb-item.active {
    color: #1537b4;
    font-weight: 600; }
  .breadcrumb-section .breadcrumb .breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s ease; }
    .breadcrumb-section .breadcrumb .breadcrumb-item a:hover {
      color: #1537b4; }

.product-gallery-wrapper .product-main-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%); }
  .product-gallery-wrapper .product-main-image img {
    width: 100%;
    height: auto;
    display: block; }
  .product-gallery-wrapper .product-main-image .product-badges-detail {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    display: flex;
    gap: 10px; }
  .product-gallery-wrapper .product-main-image .btn-zoom {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease; }
    .product-gallery-wrapper .product-main-image .btn-zoom:hover {
      background: white;
      transform: scale(1.1);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); }
.product-gallery-wrapper .product-thumbnails .swiper {
  padding: 10px 40px; }
.product-gallery-wrapper .product-thumbnails .swiper-slide {
  cursor: pointer; }
  .product-gallery-wrapper .product-thumbnails .swiper-slide img {
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease; }
    .product-gallery-wrapper .product-thumbnails .swiper-slide img:hover {
      border-color: #1537b4;
      transform: scale(1.05); }
    .product-gallery-wrapper .product-thumbnails .swiper-slide img.active {
      border-color: #ffc107;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1); }
.product-gallery-wrapper .product-thumbnails .swiper-button-next,
.product-gallery-wrapper .product-thumbnails .swiper-button-prev {
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); }
  .product-gallery-wrapper .product-thumbnails .swiper-button-next::after,
  .product-gallery-wrapper .product-thumbnails .swiper-button-prev::after {
    font-size: 14px;
    color: #1537b4; }

.product-info-detail .product-ref-large {
  display: inline-block;
  background: rgba(21, 55, 180, 0.1);
  color: #1537b4;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px; }
.product-info-detail .product-title {
  font-size: 2.5rem;
  color: #343a40;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px; }
.product-info-detail .product-brand {
  display: flex;
  align-items: center;
  padding: 15px;
  background: rgba(255, 193, 7, 0.1);
  border-left: 4px solid #ffc107;
  border-radius: 5px; }
  .product-info-detail .product-brand img {
    height: 40px; }
.product-info-detail .product-features .feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  height: 100%; }
  .product-info-detail .product-features .feature-item i {
    font-size: 1.5rem;
    flex-shrink: 0; }
  .product-info-detail .product-features .feature-item strong {
    display: block;
    color: #1537b4;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px; }
  .product-info-detail .product-features .feature-item p {
    color: #343a40;
    font-size: 1.1rem;
    font-weight: 500; }
.product-info-detail .stock-status .alert {
  border-radius: 10px;
  font-weight: 500; }
  .product-info-detail .stock-status .alert i {
    font-size: 1.25rem; }
.product-info-detail .product-actions-detail .btn-lg {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px; }
.product-info-detail .trust-badges .trust-badge {
  padding: 15px;
  background: rgba(21, 55, 180, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease; }
  .product-info-detail .trust-badges .trust-badge:hover {
    background: rgba(21, 55, 180, 0.1);
    transform: translateY(-5px); }

.product-tabs {
  margin-top: 50px; }
  .product-tabs .nav-tabs {
    border: none;
    background: #f8f9fa;
    border-radius: 10px 10px 0 0; }
    .product-tabs .nav-tabs .nav-link {
      border: none;
      color: #6c757d;
      padding: 15px 20px;
      font-weight: 500;
      transition: all 0.3s ease;
      position: relative; }
      .product-tabs .nav-tabs .nav-link:hover {
        color: #1537b4; }
      .product-tabs .nav-tabs .nav-link.active {
        background: white;
        color: #1537b4; }
        .product-tabs .nav-tabs .nav-link.active::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          height: 3px;
          background: #ffc107; }
      .product-tabs .nav-tabs .nav-link i {
        font-size: 1.1rem; }
  .product-tabs .tab-content {
    background: white;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 10px 10px;
    min-height: 400px; }
    .product-tabs .tab-content .tab-pane {
      animation: fadeIn 0.5s ease; }
    .product-tabs .tab-content h3 {
      color: #1537b4;
      font-size: 1.5rem;
      margin-bottom: 20px;
      text-transform: uppercase; }
    .product-tabs .tab-content h4 {
      color: #343a40;
      font-size: 1.2rem;
      margin-top: 30px;
      margin-bottom: 15px; }

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.specs-table th {
  background: rgba(21, 55, 180, 0.05);
  color: #1537b4;
  font-weight: 600;
  width: 40%;
  padding: 12px 15px; }
.specs-table td {
  padding: 12px 15px;
  font-weight: 500; }
.specs-table tbody tr:hover {
  background: rgba(255, 193, 7, 0.05); }

.option-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  transition: all 0.3s ease; }
  .option-card:hover {
    border-color: #ffc107;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
  .option-card h5 {
    color: #1537b4;
    font-size: 1.1rem;
    margin-bottom: 10px; }
  .option-card p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 10px; }

.downloads-list .download-item {
  padding: 20px 0; }
  .downloads-list .download-item h5 {
    color: #1537b4;
    font-size: 1.1rem;
    margin-bottom: 5px; }
  .downloads-list .download-item .btn {
    min-width: 150px; }
  .downloads-list .download-item:hover h5 {
    color: #ffc107; }

.service-card-product {
  background: rgba(21, 55, 180, 0.05);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease; }
  .service-card-product:hover {
    background: rgba(21, 55, 180, 0.1);
    transform: translateY(-5px); }
    .service-card-product:hover .service-icon-wrapper {
      transform: scale(1.1);
      background: white; }
  .service-card-product .service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease; }
  .service-card-product h5 {
    color: #1537b4;
    margin-bottom: 15px; }
  .service-card-product p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 20px; }

.related-product-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%; }
  .related-product-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px); }
    .related-product-card:hover img {
      transform: scale(1.1); }
  .related-product-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.5s ease; }
  .related-product-card .product-ref-small {
    color: #6c757d;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase; }
  .related-product-card h6 {
    color: #1537b4;
    font-size: 1rem;
    margin: 10px 0;
    min-height: 45px; }

.feature-list {
  list-style: none;
  padding: 0; }
  .feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef; }
    .feature-list li:last-child {
      border-bottom: none; }

@media (max-width: 991.98px) {
  .filters-wrapper {
    position: static !important;
    margin-bottom: 30px; }

  .product-title {
    font-size: 2rem; }

  .product-tabs .nav-tabs .nav-link {
    padding: 12px 15px;
    font-size: 0.9rem; }
    .product-tabs .nav-tabs .nav-link i {
      display: none; } }
@media (max-width: 767.98px) {
  .catalogue-header {
    text-align: center; }
    .catalogue-header #breadcrumbs {
      margin-top: 20px !important; }
      .catalogue-header #breadcrumbs:before {
        left: 33% !important; }
    .catalogue-header .lead {
      font-size: .9rem; }

  .archive .catalogue-header .catalogue-stat {
    display: none; }

  .catalogue-product-card {
    margin-bottom: 20px; }

  .product-title {
    font-size: 1.5rem; }

  .product-features .col-6 {
    width: 100%; }

  .product-tabs .nav-tabs {
    border-radius: 0; }
    .product-tabs .nav-tabs .nav-link {
      border-radius: 0; }

  .floating-cart {
    bottom: 20px;
    right: 20px; }
    .floating-cart .btn {
      width: 60px;
      height: 60px; } }
@media print {
  .floating-cart,
  .product-actions-detail,
  .btn-zoom,
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important; }

  .product-tabs .nav-tabs {
    display: none; }

  .tab-content {
    border: none; }
    .tab-content .tab-pane {
      display: block !important;
      opacity: 1 !important;
      page-break-inside: avoid; } }
.category-header {
  background: linear-gradient(135deg, #1537b4 0%, #102986 100%);
  padding: 40px 0;
  position: relative;
  overflow: hidden; }
  .category-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%; }
  .category-header .hero-banner-wrapper {
    position: relative;
    z-index: 2; }
  .category-header .category-breadcrumb {
    margin-bottom: 20px; }
    .category-header .category-breadcrumb .breadcrumb {
      background: rgba(255, 255, 255, 0.1);
      padding: 10px 20px;
      border-radius: 25px;
      backdrop-filter: blur(10px);
      margin-bottom: 0; }
      .category-header .category-breadcrumb .breadcrumb .breadcrumb-item {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.875rem; }
        .category-header .category-breadcrumb .breadcrumb .breadcrumb-item.active {
          color: white;
          font-weight: 600; }
        .category-header .category-breadcrumb .breadcrumb .breadcrumb-item a {
          color: rgba(255, 255, 255, 0.9);
          text-decoration: none;
          transition: color 0.2s ease; }
          .category-header .category-breadcrumb .breadcrumb .breadcrumb-item a:hover {
            color: #ffc107; }
          .category-header .category-breadcrumb .breadcrumb .breadcrumb-item a i {
            font-size: 0.85rem; }
        .category-header .category-breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
          color: rgba(255, 255, 255, 0.5); }

.category-sidebar {
  top: 100px; }
  @media (min-width: 992px) {
    .category-sidebar.sticky-lg-top {
      z-index: 999; } }

.category-navigation {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); }
  .category-navigation .category-nav-header {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: #1537b4;
    margin-bottom: 0px;
    text-transform: uppercase;
    font-weight: 600; }
    .category-navigation .category-nav-header .toggle-icon {
      font-size: 1.4rem; }
    .category-navigation .category-nav-header .btn-outline-primary {
      border-width: 2px;
      font-weight: 500;
      transition: all 0.3s ease; }
      .category-navigation .category-nav-header .btn-outline-primary.active, .category-navigation .category-nav-header .btn-outline-primary:hover {
        background: #1537b4;
        color: white;
        transform: translateX(3px); }
  .category-navigation #categoryTreeContent {
    margin-top: 20px; }

.category-tree {
  padding-right: 5px; }
  .category-tree::-webkit-scrollbar {
    width: 6px; }
  .category-tree::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 3px; }
  .category-tree::-webkit-scrollbar-thumb {
    background: #adb5bd;
    border-radius: 3px; }
    .category-tree::-webkit-scrollbar-thumb:hover {
      background: #919ca6; }

.category-tree-list {
  list-style: none;
  padding: 0;
  margin: 0; }
  .category-tree-list.level-2, .category-tree-list.level-3 {
    margin-left: 10px;
    margin-top: 5px;
    padding-left: 15px;
    border-left: 2px solid #e9ecef; }

.category-tree-item {
  margin-bottom: 5px;
  transition: all 0.2s ease; }
  .category-tree-item.expanded > .category-tree-list {
    animation: slideDown 0.3s ease; }
  .category-tree-item:not(.expanded) > .category-tree-list {
    display: none; }

.category-tree-row {
  display: flex;
  align-items: center;
  gap: 8px; }

.category-toggle {
  background: none;
  border: 1px solid #dee2e6;
  padding: 3px;
  cursor: pointer;
  color: #6c757d;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  border-radius: 4px;
  background-color: #dee2e6; }
  .category-toggle:hover {
    color: #1537b4;
    transform: scale(1); }
  .category-toggle i {
    font-size: 0.75rem;
    transition: transform 0.2s ease; }

.category-spacer {
  width: 4px;
  height: 4px;
  display: inline-block;
  flex-shrink: 0; }

.category-link {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  text-decoration: none;
  color: #495057;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  font-weight: 400; }
  .category-link:hover {
    background: rgba(255, 193, 7, 0.1);
    color: #1537b4;
    text-decoration: none;
    transform: translateX(2px); }
  .category-link i {
    font-size: 0.85rem;
    color: #ffc107;
    flex-shrink: 0;
    display: none; }

.category-name {
  flex: 1;
  line-height: 1.3; }

.category-count {
  font-size: 0.7rem;
  padding: 2px 6px;
  background: #e9ecef;
  color: #343a40;
  border-radius: 10px;
  font-weight: 600;
  flex-shrink: 0; }

.category-tree-item.active > .category-tree-row > .category-link {
  background: linear-gradient(135deg, #1537b4 0%, #12309d 100%);
  color: white;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(21, 55, 180, 0.2); }
  .category-tree-item.active > .category-tree-row > .category-link .category-count {
    background: #ffc107;
    color: #343a40; }
  .category-tree-item.active > .category-tree-row > .category-link i {
    color: #ffc107; }
.category-tree-item.ancestor > .category-tree-row > .category-link {
  background: rgba(21, 55, 180, 0.05);
  font-weight: 500;
  color: #1537b4; }

.category-tree-actions {
  padding-top: 15px;
  border-top: 1px solid #e9ecef; }
  .category-tree-actions .btn {
    font-size: 0.875rem;
    font-weight: 500; }
    .category-tree-actions .btn:hover {
      background: #e9ecef; }

@media (max-width: 767.98px) {
  .secondary-filters {
    display: none; } }
.secondary-filters .filter-section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1537b4;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e9ecef;
  display: flex;
  align-items: center; }
  .secondary-filters .filter-section-title i {
    color: #ffc107; }
.secondary-filters .filter-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease; }
  .secondary-filters .filter-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); }
  .secondary-filters .filter-card .filter-title {
    background: #f8f9fa;
    padding: 12px 15px;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease; }
    .secondary-filters .filter-card .filter-title:hover {
      background: #e9ecef;
      color: #1537b4; }
    .secondary-filters .filter-card .filter-title .toggle-icon {
      transition: transform 0.2s ease;
      font-size: 0.75rem; }
    .secondary-filters .filter-card .filter-title[aria-expanded="true"] .toggle-icon {
      transform: rotate(180deg); }
  .secondary-filters .filter-card .filter-content {
    padding: 15px; }
  .secondary-filters .filter-card .filter-items {
    max-height: 250px;
    overflow-y: auto; }
    .secondary-filters .filter-card .filter-items::-webkit-scrollbar {
      width: 6px; }
    .secondary-filters .filter-card .filter-items::-webkit-scrollbar-track {
      background: #f8f9fa;
      border-radius: 3px; }
    .secondary-filters .filter-card .filter-items::-webkit-scrollbar-thumb {
      background: #adb5bd;
      border-radius: 3px; }
      .secondary-filters .filter-card .filter-items::-webkit-scrollbar-thumb:hover {
        background: #919ca6; }
  .secondary-filters .filter-card .filter-item {
    margin-bottom: 8px; }
    .secondary-filters .filter-card .filter-item .form-check-label {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      cursor: pointer;
      padding: 4px 0;
      transition: all 0.2s ease; }
      .secondary-filters .filter-card .filter-item .form-check-label:hover {
        color: #1537b4; }
      .secondary-filters .filter-card .filter-item .form-check-label .filter-name {
        flex: 1;
        font-size: 0.875rem; }
      .secondary-filters .filter-card .filter-item .form-check-label .badge {
        font-size: 0.7rem;
        padding: 3px 6px; }
    .secondary-filters .filter-card .filter-item .form-check-input {
      cursor: pointer; }
      .secondary-filters .filter-card .filter-item .form-check-input:checked {
        background-color: #ffc107;
        border-color: #ffc107; }
.secondary-filters .active-filters {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 8px;
  padding: 15px;
  margin-top: 20px; }
  .secondary-filters .active-filters h6 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1537b4;
    margin-bottom: 10px; }
  .secondary-filters .active-filters .active-filters-list .badge {
    margin-right: 5px;
    margin-bottom: 5px;
    cursor: pointer;
    background-color: #ffc107;
    color: #343a40; }
    .secondary-filters .active-filters .active-filters-list .badge:hover {
      background-color: #dc3545 !important;
      color: white; }
.secondary-filters #resetFilters {
  font-size: 0.875rem;
  font-weight: 500; }
  .secondary-filters #resetFilters:hover {
    background-color: #dc3545;
    border-color: #dc3545;
    color: white; }

.subcategories-section .section-title {
  font-family: 'Oswald', sans-serif;
  color: #1537b4;
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 2px solid #e9ecef; }
  .subcategories-section .section-title i {
    color: #ffc107; }

.subcategories-grid {
  margin-bottom: 30px; }

.subcategory-card {
  display: block;
  text-decoration: none;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: white; }
  .subcategory-card:hover {
    text-decoration: none;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); }
    .subcategory-card:hover .subcategory-image {
      transform: scale(1.1); }
    .subcategory-card:hover .subcategory-icon-bg {
      color: rgba(255, 193, 7, 0.4);
      transform: scale(1.2); }
    .subcategory-card:hover .subcategory-title {
      color: #ffc107; }
    .subcategory-card:hover .view-category {
      color: #ffc107; }
      .subcategory-card:hover .view-category i {
        transform: translateX(3px); }

.subcategory-card-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column; }

.subcategory-visual {
  position: relative;
  height: 150px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); }

.subcategory-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease; }

.subcategory-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%); }

.subcategory-icon-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(21, 55, 180, 0.2);
  transition: all 0.3s ease; }

.subcategory-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column; }

.subcategory-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 10px; }

.subcategory-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1537b4;
  margin: 0;
  flex: 1;
  line-height: 1.3;
  transition: color 0.2s ease; }

.has-children-badge {
  background: rgba(255, 193, 7, 0.1);
  color: #ffc107;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-left: 10px; }

.subcategory-description {
  color: #6c757d;
  font-size: 0.875rem;
  margin: 10px 0;
  line-height: 1.5;
  flex: 1; }

.subcategory-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
  margin-top: auto; }

.product-count {
  font-size: 0.875rem;
  color: #495057;
  font-weight: 500; }
  .product-count i {
    color: #ffc107; }

/* Styles pour l'arborescence des catégories */
.category-children {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out; }

.category-children.show {
  max-height: 2000px;
  /* Ajuster selon vos besoins */
  transition: max-height 0.5s ease-in; }

.category-tree-item.expanded > .category-children {
  max-height: 2000px;
  transition: max-height 0.5s ease-in; }

.category-tree-item:not(.expanded) > .category-children {
  max-height: 0;
  transition: max-height 0.3s ease-out; }

/* Animation de l'icône */
.category-toggle i {
  transition: transform 0.2s ease; }

.view-category {
  font-size: 0.875rem;
  color: #1537b4;
  font-weight: 600;
  transition: all 0.2s ease; }
  .view-category i {
    transition: transform 0.2s ease; }

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@media (max-width: 991.98px) {
  .category-sidebar {
    position: static !important;
    margin-bottom: 30px; } }
@media (max-width: 767.98px) {
  .category-header {
    padding: 30px 0;
    text-align: center; }
    .category-header .catalogue-stat {
      width: 100%;
      margin-bottom: 10px;
      justify-content: center; }

  .category-sidebar {
    margin-bottom: 0px; }

  .subcategory-visual {
    height: 120px; }

  .subcategory-icon-bg {
    font-size: 3rem; }

  .subcategory-title {
    font-size: 1rem; }

  .subcategory-content {
    padding: 15px; }

  .category-tree-list.level-2, .category-tree-list.level-3 {
    margin-left: 15px;
    padding-left: 10px; } }
.subcategories-grid {
  margin-bottom: 30px;
  /* Card principale */
  /* Layout horizontal : image gauche + contenu droite */
  /* Image/Icône carrée à gauche */
  /* Icône si pas d'image */
  /* Contenu à droite */
  /* Responsive */ }
  .subcategories-grid .section-title {
    font-family: 'Oswald', sans-serif;
    color: #09333f;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef; }
  .subcategories-grid .section-title i {
    color: #ff8210; }
  .subcategories-grid .subcategory-card {
    display: block;
    text-decoration: none;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white; }
  .subcategories-grid .subcategory-card:hover {
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); }
  .subcategories-grid .subcategory-card-inner {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: row;
    /* Horizontal */
    align-items: stretch; }
  .subcategories-grid .subcategory-visual {
    position: relative;
    width: 150px;
    /* Largeur fixe carrée */
    min-width: 150px;
    height: 150px;
    /* Hauteur fixe carrée */
    flex-shrink: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center; }
  .subcategories-grid .subcategory-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease; }
  .subcategories-grid .subcategory-card:hover .subcategory-image {
    transform: scale(1.05); }
  .subcategories-grid .subcategory-icon-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(9, 51, 63, 0.2);
    transition: all 0.3s ease; }
  .subcategories-grid .subcategory-card:hover .subcategory-icon-bg {
    color: rgba(255, 130, 16, 0.4);
    transform: scale(1.1); }
  .subcategories-grid .subcategory-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    /* Important pour le text-overflow */ }
  .subcategories-grid .subcategory-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px; }
  .subcategories-grid .subcategory-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #09333f;
    margin: 0;
    flex: 1;
    line-height: 1.3;
    transition: color 0.2s ease; }
  .subcategories-grid .subcategory-card:hover .subcategory-title {
    color: #ff8210; }
  .subcategories-grid .has-children-badge {
    background: rgba(255, 130, 16, 0.1);
    color: #ff8210;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-left: 10px; }
  .subcategories-grid .subcategory-description {
    color: #6c757d;
    font-size: 0.875rem;
    margin: 0 0 15px 0;
    line-height: 1.5;
    flex: 1; }
  .subcategories-grid .subcategory-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto; }
  .subcategories-grid .product-count {
    font-size: 0.875rem;
    color: #495057;
    font-weight: 500; }
  .subcategories-grid .product-count i {
    color: #ff8210; }
  .subcategories-grid .view-category {
    font-size: 0.875rem;
    color: #09333f;
    font-weight: 600;
    transition: all 0.2s ease; }
  .subcategories-grid .subcategory-card:hover .view-category {
    color: #ff8210; }
  .subcategories-grid .view-category i {
    transition: transform 0.2s ease; }
  .subcategories-grid .subcategory-card:hover .view-category i {
    transform: translateX(3px); }
  @media (max-width: 767.98px) {
    .subcategories-grid {
      /* Sur mobile, revenir à un layout vertical */ }
      .subcategories-grid .subcategory-card-inner {
        flex-direction: column; }
      .subcategories-grid .subcategory-visual {
        width: 100%;
        height: auto; }
      .subcategories-grid .subcategory-icon-bg {
        font-size: 2.5rem; }
      .subcategories-grid .subcategory-title {
        font-size: 1.2rem; }
      .subcategories-grid .subcategory-content {
        padding: 15px; }
        .subcategories-grid .subcategory-content .subcategory-description, .subcategories-grid .subcategory-content .view-category {
          display: none; } }
  @media (min-width: 768px) and (max-width: 991.98px) {
    .subcategories-grid {
      /* Sur tablette, réduire la taille de l'image */ }
      .subcategories-grid .subcategory-visual {
        width: 120px;
        min-width: 120px;
        height: 120px; }
      .subcategories-grid .subcategory-icon-bg {
        font-size: 2.5rem; }
      .subcategories-grid .subcategory-content {
        padding: 15px; } }

/*# sourceMappingURL=catalogue.css.map */
