body{
font-family:"Inter",sans-serif;
font-weight:400;
}



.site-header,
.site-header * {
    box-sizing: border-box;
}

.site-header {
    width: 100%;
    background: #fff;
    border-bottom: none;
    position: relative;
    z-index: 1000;
}


/* Header principal */

.site-header .header-main {
    background: #fff;
}

.site-header .header-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 30px 14px;
    display: grid;
    grid-template-columns: 1fr minmax(360px, 430px) 1fr;
    align-items: center;
    gap: 18px;
}

/* Logo */

.site-header .header-left {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.site-header .logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    max-width: 100%;
}

.site-header .logo img {
    display: block;
    max-width: 100%;
    height: auto;
}

.site-header .logo-symbol {
    width: 82px;
    flex-shrink: 0;
}

.site-header .logo-wordmark {
    width: 150px;
    flex-shrink: 1;
}

/* Pesquisa */

.site-header .header-center {
    display: flex;
    justify-content: center;
    width: 100%;
}

.site-header .woocommerce-product-search {
    width: 100%;
    max-width: 430px;
    display: flex;
    align-items: center;
    border: 1px solid #dcdcdc;
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
}

.site-header .woocommerce-product-search:focus-within {
    border-color: #111;
}

.site-header .header-center input[type="search"] {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 18px;
    height: 44px;
    font-size: 0.95rem;
    color: #111;
    background: #fff;
    min-width: 0;
}

.site-header .header-center input[type="search"]::placeholder {
    color: #8e8e8e;
}

.site-header .header-center button {
    width: 50px;
    height: 44px;
    border: none;
    background: #111;
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.site-header .header-center button:hover {
    background: #1e3a5f;
}

/* Ícones */

.site-header .header-right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.site-header .header-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-header .header-icons a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #111 !important;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 50%;
    font-size: 1.05rem;
    position: relative;
    transition: all 0.2s ease;
}

.site-header .header-icons a i {
    color: #111 !important;
}

.site-header .header-icons a:hover {
    background: #f7f7f7;
    border-color: #cfcfcf;
    color: #1e3a5f !important;
}

.site-header .header-icons a:hover i {
    color: #1e3a5f !important;
}

.site-header .cart-count {
    position: absolute;
    top: -5px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: #e53935;
    color: #fff;
    border: 2px solid #fff;
    font-size: 0.68rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Menu */

.site-header .header-nav {
    width: 100%;
    background: #fff;
    border-top: none;
}

.site-header .header-nav-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: center;
}

.site-header .menu {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 38px;
    margin: 0;
    padding: 14px 0;
}

/* Links do menu */

.site-header .menu li a {
    position: relative;
    text-decoration: none;
    color: #111;
    font-size: 0.92rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1;
    transition: color 0.2s ease;
}

.site-header .menu li a:hover {
    color: #000;
}

/* underline apenas no hover */

.site-header .menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #1e3a5f;
    transition: width 0.25s ease;
}

.site-header .menu li a:hover::after {
    width: 100%;
}

/* item ativo em bold */

.site-header .menu li.current-menu-item a,
.site-header .menu li.current_page_item a {
    font-weight: 600;
}

.site-header .menu li.current-menu-item a::after,
.site-header .menu li.current_page_item a::after {
    width: 0;
}

/* Responsivo */

@media (max-width: 1024px) {

    .site-header .header-wrapper {
        grid-template-columns: 1fr minmax(320px, 400px) 1fr;
        gap: 18px;
        padding: 16px 20px 14px;
    }

    .site-header .logo-symbol {
        width: 78px;
    }

    .site-header .logo-wordmark {
        width: 145px;
    }

    .site-header .woocommerce-product-search {
        max-width: 400px;
    }

    .site-header .menu {
        width: 400px;
    }
}

@media (max-width: 926px) {

    .site-header .header-wrapper {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 18px 16px 14px;
        text-align: center;
    }

    .site-header .header-left,
    .site-header .header-center,
    .site-header .header-right {
        justify-content: center;
    }

    .site-header .logo {
        justify-content: center;
    }

    .site-header .header-icons {
        justify-content: center;
    }

    .site-header .woocommerce-product-search {
        max-width: 100%;
    }

    .site-header .menu {
        width: auto;
        flex-wrap: wrap;
        gap: 14px 18px;
        justify-content: center;
        padding: 14px 0;
    }
}

@media (max-width: 480px) {

    .site-header .logo {
        gap: 10px;
    }

    .site-header .logo-symbol {
        width: 64px;
    }

    .site-header .logo-wordmark {
        width: 120px;
    }

    .site-header .header-center input[type="search"] {
        height: 42px;
        padding: 0 14px;
        font-size: 0.92rem;
    }

    .site-header .header-center button {
        width: 48px;
        height: 42px;
    }

    .site-header .menu li a {
        font-size: 0.94rem;
    }
}

/* =========================
   RESPONSIVE - HEADER
========================= */

/* 390px até 341px */
@media (max-width: 390px) and (min-width: 341px) {

  .site-header .header-nav-wrapper {
    padding: 0 10px;
  }

  .site-header .menu {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding: 10px 0;
    margin: 0;
  }

  .site-header .menu li {
    flex: 1 1 25%;
    min-width: 0;
    text-align: center;
  }

  .site-header .menu li a {
    display: block;
    width: 100%;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0;
    white-space: nowrap;
  }
}

/* 340px e abaixo */
@media (max-width: 340px) {

  .site-header .header-nav-wrapper {
    padding: 0 8px;
  }

  .site-header .menu {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding: 8px 0;
    margin: 0;
  }

  .site-header .menu li {
    flex: 1 1 25%;
    min-width: 0;
    text-align: center;
  }

  .site-header .menu li a {
    display: block;
    width: 100%;
    font-size: 10px;
    line-height: 1.15;
    letter-spacing: 0;
    white-space: nowrap;
  }
}



.site-header .header-center {
    position: relative;
}

.site-header .search-live-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.10);
    overflow: hidden;
    z-index: 1200;
}

.site-header .live-search-dropdown {
    display: flex;
    flex-direction: column;
}

.site-header .live-search-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    text-decoration: none;
    border-bottom: 1px solid #f2f2f2;
    color: #111;
    background: #fff;
}

.site-header .live-search-item:hover {
    background: #f8f8f8;
}

.site-header .live-search-thumb {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    background: #f6f6f6;
}

.site-header .live-search-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.site-header .live-search-meta {
    min-width: 0;
}

.site-header .live-search-title {
    font-size: 14px;
    line-height: 1.35;
    color: #111;
    margin-bottom: 4px;
}

.site-header .live-search-price {
    font-size: 13px;
    font-weight: 600;
    color: #1e3a5f;
}

.site-header .live-search-all,
.site-header .live-search-empty {
    display: block;
    padding: 12px 14px;
    font-size: 14px;
    text-align: center;
    background: #fff;
}

.site-header .live-search-all {
    text-decoration: none;
    color: #1e3a5f;
    font-weight: 600;
}

.site-header .live-search-all:hover {
    background: #f8f8f8;
}

.site-header .live-search-empty {
    color: #666;
}

@media (max-width: 926px) {
    .site-header .search-live-results {
        max-width: 100%;
    }
}


/* =========================
   DARK MODE LOGO
========================= */

.site-header .logo img.logo-dark {
    display: none !important;
}

.site-header .logo img.logo-light {
    display: block !important;
}

html.wp-dark-mode-active .site-header .logo img.logo-light {
    display: none !important;
}

html.wp-dark-mode-active .site-header .logo img.logo-dark {
    display: block !important;
}

html.wp-dark-mode-active .site-header .logo img {
    filter: none !important;
    mix-blend-mode: normal !important;
}