@charset "UTF-8";
.store-main {
  background: white;
  width: 100vw;
  /* ================= HERO ================= */
  /* ================= LAYOUT ================= */
  /* ================= SIDEBAR ================= */
  /* ================= GRID ================= */
  /* ================= BREAKPOINT ================= */
  /* ================= CARD ================= */
}
@media screen and (min-width: 1280px) {
  .store-main {
    width: 80%;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  }
}
@media screen and (min-width: 1536px) {
  .store-main {
    width: 60%;
  }
}
.store-main .store-hero {
  background: linear-gradient(
      135deg,
      rgba(27, 101, 166, 0.85),
      rgba(29, 75, 115, 0.85)
    ),
    url("https://images.unsplash.com/photo-1607082348824-0a96f2a4b9da?q=80&w=870&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 2rem 5rem;
  text-align: center;
  color: white;
}
.store-main .store-hero .store-hero__content .store-hero__content-logo {
  /* border: solid 1pc blue; */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.store-main .store-hero .store-hero__content .store-hero__content-logo img {
  /* border: solid 1pc red; */
  width: 250px;
  height: 250px;
}
.store-main .store-hero p {
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.95;
  font-size: 1rem;
}
.store-main .store-hero .store-search {
  display: flex;
  justify-content: center;
}
.store-main .store-hero .store-search .search-box {
  background: white;
  width: 100%;
  max-width: 520px;
  display: flex;
  align-items: center;
  padding: 0.9rem 1.2rem;
  border-radius: 50px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}
.store-main .store-hero .store-search .search-box i {
  color: #1b65a6;
  margin-right: 0.8rem;
}
.store-main .store-hero .store-search .search-box input {
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
  color: #545454;
}
.store-main .store-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  padding: 3rem 3rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}
.store-main .store-sidebar {
  background: white;
  border-radius: 18px;
  padding: 2rem;
  height: fit-content;
  /* 🔥 ALTERAÇÃO AQUI (igual aos cards) */
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08), 0 12px 32px rgba(0, 0, 0, 0.1);
}
.store-main .store-sidebar .sidebar-title {
  font-size: 1.15rem;
  margin-bottom: 1.8rem;
  color: #1d4b73;
  font-weight: 600;
  border-bottom: 1px solid #ededed;
  padding-bottom: 0.7rem;
}
.store-main .store-sidebar .filter-group {
  margin-bottom: 2rem;
}
.store-main .store-sidebar .filter-group h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #083040;
}
.store-main .store-sidebar .filter-group label {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  cursor: pointer;
  color: #545454;
  transition: 0.2s;
}
.store-main .store-sidebar .filter-group label:hover {
  color: #1b65a6;
}
.store-main .store-sidebar .filter-group label input {
  margin-right: 0.6rem;
  accent-color: #1b65a6;
}
.store-main .store-sidebar .apply-filter {
  width: 100%;
  padding: 0.9rem;
  border-radius: 14px;
  border: none;
  background: #1b65a6;
  color: white;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}
.store-main .store-sidebar .apply-filter:hover {
  background: #1d4b73;
}
.store-main .store-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
  grid-auto-rows: auto;
}
@media (max-width: 1024px) {
  .store-main .store-layout {
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    padding: 2.5rem 2rem 3rem;
  }
  .store-main .store-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}
@media (max-width: 900px) {
  .store-main .store-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .store-main .store-sidebar {
    order: -1;
  }
  .store-main .store-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}
@media (max-width: 600px) {
  .store-main .store-layout {
    padding: 2rem 1.2rem;
  }
  .store-main .store-grid {
    grid-template-columns: 1fr;
  }
}
.store-main .product-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08), 0 12px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 450px;
}
.store-main .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12), 0 24px 50px rgba(0, 0, 0, 0.16);
}
.store-main .product-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.store-main .product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.store-main .product-card__image:hover img {
  transform: scale(1.05);
}
.store-main .product-card__image .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #1b65a6;
  color: white;
  padding: 0.35rem 0.8rem;
  font-size: 0.75rem;
  border-radius: 20px;
}
.store-main .product-card__content {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.store-main .product-card__content h3 {
  color: #1d4b73;
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.store-main .product-card__content p {
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
  color: #545454;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.store-main .product-card__content .btn-primary {
  width: 100%;
  padding: 0.8rem;
  background: #1b65a6;
  border: none;
  border-radius: 14px;
  color: white;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
  margin-top: auto;
}
.store-main .product-card__content .btn-primary:hover {
  background: #1d4b73;
}
.store-main .store-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1rem;
  color: #083040;
}
.store-main .store-empty__icon {
  font-size: 2rem;
  color: #1b65a6;
  margin-bottom: 1rem;
  opacity: 0.8;
}
.store-main .store-empty h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #1d4b73;
}
.store-main .store-empty p {
  font-size: 0.9rem;
  opacity: 0.7;
  max-width: 400px;
  margin: 0 auto;
}
