/*
 Theme Name: Astra Child
 Template: astra
*/

.site-header {
    border-bottom: 1px solid #e0e0e0;
    background: white;
}

.top-bar {
    background-color: #673e32;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    font-size: 14px;
    font-weight: 400;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.site-branding {
    margin: 0;
}

.site-logo {
    max-height: 30px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-container {
    position: relative;
}

.search-form {
    margin: 0;
    position: relative;
    display: flex;
}

.search-form input[type="search"] {
    
    padding: 8px 30px 8px 10px;
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    background-color: #f5f5f5;
    font-size: 14px;
}

.search-form .search-submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>') no-repeat center;
    border: none;
    width: 20px;
    height: 20px;
    text-indent: -9999px;
    cursor: pointer;
}

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

.header-icons .icon {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    position: relative;
    display: flex;
    align-items: center;
}

.header-icons .sign-in .icon-text {
    font-size: 14px;
    font-weight: 400;
}

.header-icons .wishlist::before {
    content: "❤";
    font-size: 16px;
}

.header-icons .cart::before {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="9" cy="21" r="1"></circle><circle cx="20" cy="21" r="1"></circle><path d="M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"></path></svg>');
    margin-right: 5px;
}

.header-icons .cart .cart-count {
    background-color: #f28c38;
    color: #fff;
    border-radius: 50%;
    padding: 1px 5px;
    font-size: 10px;
    position: absolute;
    top: -8px;
    right: -8px;
    line-height: 1;
}

.main-navigation {
    border-top: 1px solid #e0e0e0;
    padding: 10px 20px;
}

#primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

#primary-menu li {
    display: inline-block;
}

#primary-menu li a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
}

#primary-menu li a:hover {
    text-decoration: underline;
}