/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 328:0 Unexpected "<"

**/
<style>
/* ===== Your Card Grid Styles ===== */
.help-center{
  margin:auto;
}
/* Banner Image */
.hc-banner {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  margin-bottom:30px;
}
.hc-search-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}


.hc-search-wrapper input {
  width: 100%;
  padding: 14px 40px 14px 40px; /* space for icons */
  font-size: 16px;
  /* border-radius: 8px; */
  border: 1px solid #ddd;
  outline: none;
}

/* Search icon (left) */
.hc-search-icon2 {
  position: absolute;
  left: 14px;
  top: 57%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #777;
  pointer-events: none;
  z-index:10;
}

/* Clear icon (right) */
.hc-search-clear {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  cursor: pointer;
  color: #777;
  display: none;
}

.hc-search-clear:hover {
  color: #000;
}


/* Background image */
.hc-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
    object-position: top;
  /* filter: brightness(0.55); dark overlay effect */
}

/* Centered content */
.hc-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  z-index: 2;
}

/* Heading */
.hc-content h1 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* Search input */
.hc-content input {
  width: 100%;
  max-width: 520px;
  padding: 14px 18px;
  /* border-radius: 6px; */
  border: none;
  font-size: 16px;
  outline: none;
}
 /* ===== SEARCH CONTAINER ===== */


/* ===== INPUT ===== */
#hc-search-input1 {
  width: 100%;
  height: 56px;
  padding: 0 48px 0 48px;
  /* border-radius: 6px; */
  border: none;
  font-size: 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  outline: none;
  box-sizing: border-box;
}

/* ===== SEARCH ICON (LEFT) ===== */
.hc-search-icon1 {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
}

/* ===== CLEAR (RIGHT) ===== */
#hc-search-clear1 {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  display: none;
}

#hc-search-input:not(:placeholder-shown) + #hc-search-clear1 {
  display: block;
}

/* ===== FLOATING DROPDOWN CARD ===== */
.hc-search-results1 {
  position: relative;

  left: 0;
  right: 0;
  background: #fff;
  border-radius: 1px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  max-height: 360px;
  overflow-y: auto;
  text-align: left;
  display: none;
  z-index: 999;
  width:520px;
}

.hc-search-results1.active {
  display: block;
}

.hc-search-empty{
  padding:20px;
}

/* ===== RESULT ITEM ===== */
.hc-search-results1 a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  text-decoration: none;
  color: #000;
  font-size: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.hc-search-results1 a:last-child {
  border-bottom: none;
}

.hc-search-results1 a:hover {
  background: #f8f8f8;
}

/* ===== CATEGORY TEXT (SECOND LINE) ===== */
.hc-search-results1 small {
  display: block;
  font-size: 13px;
  color: #888;
  margin-top: 2px;
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  /* .hc-content {
    max-width: 92%;
  } */
  .hc-search-results1{
    width:100%;
  }
}



.hc-container {
  width: 100%;
  /* max-width: 50%; */
  margin: auto;
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr; /* sidebar + main */
  gap: 30px;
}
.hc-main h1{
    width: 100%;
    max-width:60%;
    margin: auto;
    margin-bottom:50px;
    font-size:24px;
    color:black;
    font-weight:600;
}
.hc-grid {
  width: 100%;
  max-width:60%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin:auto;

          /* margin-left: 0;
        margin-right: 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        row-gap: 24px;
        -webkit-column-gap: 24px;
        column-gap: 24px;
        -webkit-align-items: stretch;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch; */
}

@media (max-width: 768px) {
  .hc-grid {
    grid-template-columns: 1fr; /* 1 column */
    gap: 20px;                /* Optional smaller gap */
    max-width: 90%;           /* Make it wider on mobile */
  }
}

/* Card styles */
.hc-card, .card {
  background: #fff;
  padding: 24px;
  border-radius: 6px;
  border: 1px solid black;
  text-align: center;
  transition: 0.3s ease;
}

.hc-card:hover, .card:hover {
  background-color: black;
  transform: translateY(-4px);
}


/* Headings inside cards */
.hc-card h3,
.card h3 {
  color: black;
  font-size: 15px;
  font-weight: bold;
  transition: 0.3s ease;
  margin-bottom:10px;
}

.hc-card:hover h3,
.card:hover h3 {
  color: white;
}

/* Paragraph inside cards */
.hc-card p,
.card p {
  font-size: 12px;
  line-height: 1.5;
  color: #444;
  transition: 0.3s ease;
}

.hc-card:hover p,
.card:hover p {
  color: white;
}

/* Input search styling (optional but improved) */
/* #hc-search-input1 {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
} */

/* Reset anchor decoration */
a {
  text-decoration: none;
  color: inherit;
}
/* .hc-search-item{
  display:flex;
  margin:20px;
}
#hc-search-results{
    width: 500px;
    background-color: white;
} */

</style>
