.kp-header-elements-elementor {
    align-items center;
}
.kp-cart{
	font-size:15px;
}
.
.kp-header-elements-elementor a {
    text-decoration none;
    font-weight 500;
    display flex;
    align-items center;
    gap 5px;
}

.kp-header-elements-elementor .kp-search input {
    padding 5px;
    width 150px;
}

@media(max-width767px){
    .kp-header-elements-elementor {
        flex-direction column !important;
        gap 10px !important;
    }
    .kp-header-elements-elementor .kp-search input {
        width 100%;
    }
}

.kp-header-elements-elementor {
  display: flex;
  flex-direction: row;
  gap: 25px; /* space between items */
  align-items: center; /* vertically center icons/text */
  flex-wrap: nowrap; /* keep them horizontal */
}

.kp-header-elements-elementor svg {
  width: 28px;
  height: 28px;
  fill: currentColor; /* makes icon inherit text color */
  display: inline-block;
  vertical-align: middle;
}

.kp-header-elements-elementor .kp-search,
.kp-header-elements-elementor .kp-cart,
.kp-header-elements-elementor .kp-account {
  display: flex;
  align-items: center;
  gap: 8px; /* spacing between icon and text */
  font-size: 18px; /* adjust text size */
  background-color:#871F1F;
  padding:8px;
  border-radius:50%;
  position:relative;
}
.kp-cart-count{
	position:absolute;
	top:-3px;
	background:white;
	color:red;
	border:solid 1px red;
	padding:5px;
	border-radius:100%;
	line-height:9.5px;
}
[id^="custom-search-wrapper"] {
    display: flex;
  align-items: center;
  gap: 8px; /* spacing between icon and text */
  font-size: 18px; /* adjust text size */
  background-color:#871F1F;
  padding:8px;
  border-radius:50%;
  position:relative;
	color:white;
}

[id^="search-popup"] {
    position: absolute;
    top: 30px;
    right: 0;
    width: 300px;
    background: #fff;
    border: 1px solid #ccc !important;
    padding: 10px;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

[id^="popup-search-input"] {
    width: calc(100% - 80px);
    padding: 5px;
    margin-right: 5px;
	color:black !important;
	border:solid 1px #ccc !important;
}

[id^="popup-search-btn"] {
    padding: 5px 10px;
    background: #871F1F;
    color: #fff;
    border: none;
    cursor: pointer;
}

[id^="popup-search-results"] ul li a {
    text-decoration: none;
    color: #333;
}

[id^="popup-search-results"] ul li:hover {
    background: #f5f5f5;
}