/** Shopify CDN: Minification failed

Line 337:0 Expected "}" to go with "{"

**/
.evermark-header * {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Announcement */
.announcement-bar {
  background: #5a1d82;
  color: #fff;
  text-align: center;
  padding: 8px;
  font-size: 14px;
}

/* Utility */
.top-utility-menu {
  display: flex;
  justify-content: space-between;
  /* padding: 10px 40px; */
  background: #f4f4f4;
}

.utility-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.header__utility-links a::after {
  display: none !important;
}
.utility-links,
.utility-links * {
  text-decoration: none !important;
  border-bottom: none !important;
}

.utility-links a::after,
.utility-links a::before {
  content: none !important;
}

.utility-links a,
.find-funeral-home {
  color: #4c4f53;
  font-size: 14px;
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Main Header */
.main-header {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  /* padding: 18px 40px; */
}

.site-logo {
  max-height: 48px;
  margin-left: 25px;
}

/* Search */
.search-box {
  display: flex;
  max-width: 520px;
  margin: auto;
}

.search-box input {
  flex: 1;
  height: 42px;
  padding: 10px;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 6px 0 0 6px;
}

.search-box button {
  background: #0c2340;
  border: none;
  color: #fff;
  padding: 0 16px;
  border-radius: 0 6px 6px 0;
}

/* Icons */
.header-icons {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-right: 25px;
}

.icon-link {
  color: #0c2340;
  position: relative;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #5a1d82;
  color: #fff;
  font-size: 11px;
  padding: 2px 5px;
  border-radius: 50%;
}

/* Nav */
.main-nav ul {
  display: flex;
  justify-content: center;
  gap: 32px;
  list-style: none;
  /* padding: 14px; */
}

.main-nav a {
  color: #4c4f53;
  font-size: 18px;
  text-decoration: none;
}

/* Trustpilot */
.trustpilot-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  background: #F4F4F4;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

/* Stars group */
.tp-stars {
  display: flex;
  gap: 2px;
}

/* Star icon */
.tp-star-icon {
  width: 16px;
  height: 16px;
  fill: #42B57A;
}


.tp-star-icon.small {
  width: 14px;
  height: 14px;
  margin-right: 4px;
}

.tp-text,
.tp-brand,
.tp-dot {
  color: #0a2540;
  font-weight: 400;
}


.tp-reviews {
  color: #0a2540;
  text-decoration: underline;
  font-weight: 400;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0c2340;
  margin: 4px 0;
}


.main-nav {
  position: relative;
}

.nav-overlay {
  display: none;
}
.drawer-close {
  display: none; 
}

/* .trustpilot-bar .stars {
  color: #42b57a;
  margin-right: 6px;
} */

/* Mobile */
@media (max-width: 768px) {
  .main-header {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .header-icons {
    justify-content: center;
  }
   .drawer-close {
    display: block; 
  }

 .top-utility-menu {
    flex-direction: column;  
    gap: 8px;             
    padding: 0 15px;        
  }
  .utility-links {
    flex-wrap: wrap;         
    gap: 12px;              
  }
.mobile-menu-toggle {
    display: block;
  }

  /* Drawer */
  .main-nav {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    padding: 20px;
    transition: left 0.3s ease;
    overflow-y: auto;
  }

  .main-nav.active {
    left: 0;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .main-nav a {
    font-size: 18px;
  }

  .mobile-drawer-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
  }

  .drawer-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
  }


  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
  }

  .nav-overlay.active {
    display: block;
  }
@media (max-width: 768px) {
  .trustpilot-bar {
    flex-wrap: wrap;              /* allow wrapping if too long */
    justify-content: center;       /* center all items */
    gap: 4px;                      /* reduce spacing */
    padding: 8px 10px;             /* adjust padding */
    font-size: 13px;               /* slightly smaller text */
  }

  .tp-stars {
    gap: 2px;
  }

  .tp-text,
  .tp-reviews,
  .tp-brand {
    font-size: 13px;
  }

  .tp-brand {
    display: flex;
    align-items: center;
    gap: 3px;
  }

  .tp-star-icon {
    width: 14px;
    height: 14px;
  }

  .tp-star-icon.small {
    width: 12px;
    height: 12px;
  }
}

