  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/

  /* === HEADER TOP === */
  .header-top {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  .header-top-inner {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 20px;
    width: var(--page-width);
    margin-left: auto;
    margin-right: auto;
  }

  /* LOGO */

  .site-logo svg {
      display: block;
      height: 60px;
      width: auto;
      max-width: 200px;
  }


  .site-branding {
    display: flex;
    align-items: center;
  }
  .site-branding a {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
  }

  /* SEARCH */
  .header-search {
    display: flex;
    justify-content: center;
  }

  .dgwt-wcas-search-wrapp {
    width: 100%;
    max-width: 480px;
  }

  .dgwt-wcas-search-input {
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 10px 15px;
    font-size: 14px;
    width: 100%;
  }

  /* ICONS RIGHT */
  .header-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    position: relative;
  }

  .header-icons i {
    font-size: 20px;
    color: #111;
    transition: color 0.3s ease;
    cursor: pointer;
  }

  .header-icons i:hover {
    color: #7e4e62;
  }

  /* WISHLIST */
  .header-wishlist {
    position: relative;
    display: flex;
    align-items: center;
  }
  .header-wishlist .wishlist_products_counter {
    position: relative;
    text-decoration: none;
  }
  .header-wishlist .wishlist_products_counter_number {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #000;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    border-radius: 50%;
    padding: 2px 6px;
    line-height: 1;
  }


  .wishlist_products_counter_text {
    display: none !important;
  }

  .wishlist_products_counter i {
    font-size: 20px;
    color: #111;
  }

  
  /* === WISHLIST ICON (Header) === */
  a.wishlist_products_counter.top_wishlist-heart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  /* 🔧 Force Font Awesome za wishlist ikonu
  a.wishlist_products_counter.top_wishlist-heart::before {
      content: "\f004";
      font-family: "Font Awesome 5 Free" !important; 
      font-weight: 900 !important;
      font-size: 20px;
      color: #111;
      display: inline-block;
      transition: color 0.3s ease;
      line-height: 1;
  }
  */
  /* Hover efekat */
  a.wishlist_products_counter.top_wishlist-heart:hover::before {
      color: #7e4e62;
  }

  /* Sakrij tekst koji dodaje plugin */
  .wishlist_products_counter_text {
      display: none !important;
  }

  /* Brojač */
  a.wishlist_products_counter.top_wishlist-heart .wishlist_products_counter_number {
      position: absolute;
    top: -1px;
    right: 0px;
    background: #7e4e62;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50%;
    padding: 3px 6px;
    line-height: 1;
  }

  a.wishlist_products_counter.top_wishlist-heart::before {
      font-size: 40px;
  }
  a.wishlist_products_counter.top_wishlist-heart.wishlist-counter-with-products::before {
      content: "\e909";
  }

  /* CART */
  .header-cart {
    position: relative;
  }
  .header-cart .cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #000;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    border-radius: 50%;
    padding: 2px 6px;
    line-height: 1;
  }

  /* === RESPONSIVE === */
  @media (max-width: 992px) {
    .header-top-inner {
      grid-template-columns: 1fr auto;
      grid-template-areas:
        "logo icons"
        "search search";
    }
    .site-branding {
      grid-area: logo;
    }
    .header-icons {
      grid-area: icons;
    }
    .header-search {
      grid-area: search;
      margin-top: 10px;
    }
    .dgwt-wcas-search-wrapp {
      max-width: 100%;
    }
  }

  .header-mini-nav {
    background-color: #f3e2db;
  }
  .header-account a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #333;
  }

  .header-account i {
    font-size: 28px;
  }


