.cr-live-search {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
  font-family: inherit;
}

/* HEADER */
.cr-ls-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.cr-ls-logo img {
  max-height: 40px;
  width: auto;
  display: block;
}

.cr-ls-header-center .cr-ls-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid #d4d4d4;
  font-size: 16px;
  outline: none;
}

.cr-ls-header-center .cr-ls-input:focus {
  border-color: #0074d9;
  box-shadow: 0 0 0 1px #0074d9;
}

.cr-ls-header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cr-ls-icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* CONTENT LAYOUT */
.cr-ls-content {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 2rem;
}

.cr-ls-title {
  font-size: 18px;
  margin-bottom: 1rem;
}

/* POPULAR / BRANDS LIST */
.cr-ls-popular,
.cr-ls-brands {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.cr-ls-popular li,
.cr-ls-brands li {
  margin-bottom: 0.35rem;
}

.cr-ls-popular a,
.cr-ls-brands a {
  text-decoration: none;
  color: #0074d9;
  font-size: 14px;
}

.cr-ls-popular a:hover,
.cr-ls-brands a:hover {
  text-decoration: underline;
}

/* MAIN / CAROUSEL */
.cr-ls-carousel-wrapper {
  position: relative;
}

.cr-ls-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.75rem 0.25rem 0.5rem;
}

/* PRODUCT CARDS */
.cr-ls-card {
  flex: 0 0 220px;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cr-ls-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.cr-ls-card-img {
  width: 100%;
  padding: 1rem;
  text-align: center;
}

.cr-ls-card-img img {
  max-width: 100%;
  height: 150px;
  object-fit: contain;
}

.cr-ls-card-body {
  padding: 0 1rem 0.5rem;
}

.cr-ls-card-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.cr-ls-card-price {
  font-size: 14px;
  color: #111;
}

.cr-ls-card-footer {
  padding: 0 1rem 1rem;
}

.cr-ls-add-to-cart {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: none;
  background: #0074d9;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

/* EMPTY */
.cr-ls-empty {
  font-size: 14px;
  color: #666;
}

/* CAROUSEL ARROWS */
.cr-ls-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  border: none;
  background: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cr-ls-arrow i {
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cr-ls-header {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }

  .cr-ls-header-left {
    justify-self: center;
  }

  .cr-ls-header-right {
    justify-content: center;
  }

  .cr-ls-content {
    grid-template-columns: 1fr;
  }

  .cr-ls-sidebar {
    order: 2;
  }

  .cr-ls-main {
    order: 1;
  }

  .cr-ls-arrow {
    display: none;
  }
}
