/* Reduce the logo size to decrease header height */
header .site-branding .custom-logo {
    max-height: 60px; /* Adjust this value to make header thinner or thicker */
    width: auto;
    transition: all 0.3s ease;
}

/* Reduce padding in the header container */
header .site-header-inner {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

/* Ensure all items (logo, menu, icons) are perfectly centered vertically */
header .woostify-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}



/* Adds a soft shadow under the header for a premium look */
header .site-header {
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}