.sci-hero {
  position: relative;
  isolation: isolate;
  color: #ffffff;
  width: 100%;
  overflow: hidden;
  min-height: 520px;
  height: calc(100vh - 100px);
  padding: clamp(32px, 5vw, 64px) 16px;
}
.sci-hero .sci-hero__bg {
  position: absolute;
  inset: 0;
  background: none;
  z-index: -2;
}
.sci-hero .sci-hero__bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sci-hero .sci-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: left;
  margin-top: 120px;
}
.sci-hero .sci-hero__inner .sci-hero__header {
  margin-bottom: 24px;
}
.sci-hero .sci-hero__inner .sci-hero__header .sci-hero__title {
  margin: 0 0 8px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #0e6b63;
}
.sci-hero .sci-hero__inner .sci-hero__header .sci-hero__subtitle {
  margin: 0;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: #ffffff;
  font-style: italic;
  color: #0e6b63;
}
.sci-hero .sci-hero__inner .sci-hero__search .sci-hero__fieldwrap {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: saturate(140%) blur(6px);
          backdrop-filter: saturate(140%) blur(6px);
  border: 1.5px solid rgba(0, 124, 145, 0.8);
  border-radius: 8px;
  padding: 48px 32px;
  max-width: 960px;
  box-shadow: 0 8px 24px rgba(0, 124, 145, 0.15);
}
.sci-hero .sci-hero__inner .sci-hero__search .sci-hero__fieldwrap .sci-hero__label {
  display: block;
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #0e6b63;
}
.sci-hero .sci-hero__inner .sci-hero__search .sci-hero__fieldwrap .sci-hero__control {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 2px solid rgba(14, 107, 99, 0.25);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}
.sci-hero .sci-hero__inner .sci-hero__search .sci-hero__fieldwrap .sci-hero__control .sci-hero__input {
  padding: 18px 20px;
  font-size: 1rem;
  line-height: 1.2;
  color: #000;
  border: none;
  outline: none;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.sci-hero .sci-hero__inner .sci-hero__search .sci-hero__fieldwrap .sci-hero__control .sci-hero__input:hover, .sci-hero .sci-hero__inner .sci-hero__search .sci-hero__fieldwrap .sci-hero__control .sci-hero__input:focus {
  box-shadow: 0 0 0 3px rgba(0, 124, 145, 0.2);
  background: #fff;
}
.sci-hero .sci-hero__inner .sci-hero__search .sci-hero__fieldwrap .sci-hero__control .sci-hero__input::-moz-placeholder {
  color: #7f9291;
  font-style: italic;
}
.sci-hero .sci-hero__inner .sci-hero__search .sci-hero__fieldwrap .sci-hero__control .sci-hero__input::placeholder {
  color: #7f9291;
  font-style: italic;
}
.sci-hero .sci-hero__inner .sci-hero__search .sci-hero__fieldwrap .sci-hero__control .sci-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  background: #0e6b63;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s ease;
}
.sci-hero .sci-hero__inner .sci-hero__search .sci-hero__fieldwrap .sci-hero__control .sci-hero-button:hover {
  background: #0a524d;
  transform: scale(1.05);
}
.sci-hero .sci-hero__inner .sci-hero__search .sci-hero__fieldwrap .sci-hero__control .sci-hero-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -3px;
}
.sci-hero .sci-hero__inner .sci-hero__search .sci-hero__fieldwrap .sci-hero__control .sci-hero-button .sci-hero__buttonIcon {
  font-size: 1.125rem;
}
@media (max-width: 720px) {
  .sci-hero {
    padding: 28px 14px;
  }
  .sci-hero__header {
    margin-bottom: 24px;
  }
  .sci-hero__header .sci-hero__title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
  .sci-hero__header .sci-hero__subtitle {
    font-size: clamp(0.875rem, 3vw, 1rem);
  }
  .sci-hero__fieldwrap {
    padding: 20px;
  }
  .sci-hero__label {
    font-size: 0.875rem;
    margin-bottom: 8px;
  }
  .sci-hero__input {
    padding: 14px 16px;
    font-size: 0.9rem;
  }
  .sci-hero__button {
    padding: 0 18px;
  }
}

.hidden {
  display: none !important;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Default Styles for Container */
.sci-store-container {
  background: #f6f8fb;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 16px;
  box-sizing: border-box;
  min-height: 100vh;
  /* Small devices (up to 576px) */
  /* Medium devices (up to 768px) */
  /* Large devices (up to 992px) */
  /* Extra large devices (up to 1200px) */
  /* Extra extra large devices (up to 1400px) */
}
@media (max-width: 576px) {
  .sci-store-container {
    max-width: 100%;
    padding: 10px 0;
  }
}
@media (min-width: 768px) {
  .sci-store-container {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .sci-store-container {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .sci-store-container {
    max-width: 100%;
  }
}
@media (min-width: 1400px) {
  .sci-store-container {
    max-width: 100%;
  }
}
.sci-store-container .global-search-bar {
  box-shadow: 0 2px 8px 0 rgba(26, 38, 50, 0.03);
  padding: 20px 12px;
  margin-bottom: 24px;
  border-radius: 5px;
  background-color: #fff;
  display: flex;
  justify-content: center;
}
@media (max-width: 600px) {
  .sci-store-container .global-search-bar {
    padding: 15px 10px;
    margin-bottom: 15px;
  }
}
.sci-store-container .global-search-bar .search-form {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 600px) {
  .sci-store-container .global-search-bar .search-form {
    max-width: 100%;
  }
}
.sci-store-container .global-search-bar .search-form .search-input-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 600px) {
  .sci-store-container .global-search-bar .search-form .search-input-wrapper {
    width: 100%;
  }
}
.sci-store-container .global-search-bar .search-form .search-input-wrapper .search-input {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 15px;
  font-weight: 500;
  color: #222;
  background: #fafcfc;
  border: 1.5px solid #007c91;
  padding: 10px 14px;
  border-radius: 5px;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 124, 145, 0.04);
}
.sci-store-container .global-search-bar .search-form .search-input-wrapper .search-input::-moz-placeholder {
  color: #888;
  letter-spacing: 0.02em;
  opacity: 1;
}
.sci-store-container .global-search-bar .search-form .search-input-wrapper .search-input::placeholder {
  color: #888;
  letter-spacing: 0.02em;
  opacity: 1;
}
.sci-store-container .global-search-bar .search-form .search-input-wrapper .search-input:hover, .sci-store-container .global-search-bar .search-form .search-input-wrapper .search-input:focus {
  border-color: #006769;
  box-shadow: 0 0 0 2px rgba(0, 124, 145, 0.13);
  background: #fff;
}
@media (max-width: 768px) {
  .sci-store-container .global-search-bar .search-form .search-input-wrapper .search-input {
    font-size: 13px;
    padding: 8px 12px;
    width: 90%;
  }
}
@media (max-width: 600px) {
  .sci-store-container .global-search-bar .search-form .search-input-wrapper .search-input {
    width: 90%;
    min-width: 0;
    max-width: 90%;
  }
}
.sci-store-container .global-search-bar .search-form .search-input-wrapper .clear-btn {
  position: absolute;
  right: 85px;
  z-index: 2;
  background: transparent;
  border: none;
  color: #b1b7c4;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.sci-store-container .global-search-bar .search-form .search-input-wrapper .clear-btn:hover, .sci-store-container .global-search-bar .search-form .search-input-wrapper .clear-btn:focus {
  color: #ee4444;
  outline: none;
}
@media (max-width: 600px) {
  .sci-store-container .global-search-bar .search-form .search-input-wrapper .clear-btn {
    right: 60px;
  }
}
@media (max-width: 768px) {
  .sci-store-container .global-search-bar .search-form .search-input-wrapper .clear-btn {
    right: 65px;
  }
}
.sci-store-container .global-search-bar .search-form .search-input-wrapper .btn {
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  padding: 22px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.15s;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sci-store-container .global-search-bar .search-form .search-input-wrapper .btn--primary {
  background: #006769;
  color: #fff;
  border: 2px solid #006769;
}
.sci-store-container .global-search-bar .search-form .search-input-wrapper .btn--primary:hover, .sci-store-container .global-search-bar .search-form .search-input-wrapper .btn--primary:focus {
  background: #fff;
  color: #006769;
  box-shadow: 0 2px 8px rgba(0, 124, 145, 0.04);
}
@media (max-width: 768px) {
  .sci-store-container .global-search-bar .search-form .search-input-wrapper .btn {
    font-size: 13px;
    padding: 8px 12px;
    height: 39px;
  }
}
@media (max-width: 600px) {
  .sci-store-container .global-search-bar .search-form .search-input-wrapper .btn {
    width: 10%;
    min-width: 0;
    max-width: 10%;
  }
}
.sci-store-container .global-search-bar .search-form .search-toggles {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .sci-store-container .global-search-bar .search-form .search-toggles {
    gap: 15px;
    justify-content: center;
  }
}
.sci-store-container .global-search-bar .search-form .search-toggles .exact-match-toggle,
.sci-store-container .global-search-bar .search-form .search-toggles .available-stock-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #e0f2f1;
}
.sci-store-container .global-search-bar .search-form .search-toggles .exact-match-toggle input[type=checkbox],
.sci-store-container .global-search-bar .search-form .search-toggles .available-stock-toggle input[type=checkbox] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.sci-store-container .global-search-bar .search-form .search-toggles .exact-match-toggle label,
.sci-store-container .global-search-bar .search-form .search-toggles .available-stock-toggle label {
  cursor: pointer;
  color: #000;
}
.sci-store-container .sci-store-main-wrapper {
  display: grid;
  grid-template-columns: 345px 1fr;
  gap: 16px;
}
@media (max-width: 1024px) {
  .sci-store-container .sci-store-main-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar {
  background: #ffffff;
  border-radius: 5px;
  min-width: 320px;
  padding: 20px 12px;
  box-shadow: 0 1px 4px 0 rgba(26, 38, 50, 0.04);
  position: sticky;
  top: 110px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}
@media (max-width: 1024px) {
  .sci-store-container .sci-store-main-wrapper .filter-sidebar {
    position: static;
    max-height: none;
  }
}
@media (max-width: 600px) {
  .sci-store-container .sci-store-main-wrapper .filter-sidebar {
    padding: 15px 10px;
  }
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-header {
  margin-bottom: 16px;
  padding-bottom: 5px;
  border-bottom: 2px solid #f3f4f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-header h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}
@media (max-width: 600px) {
  .sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-header h3 {
    font-size: 16px;
  }
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-header .reset-filters {
  font-size: 13px;
  color: #6b7280;
}
@media (max-width: 600px) {
  .sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-header .reset-filters {
    font-size: 12px;
  }
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .search-form {
  margin: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .search-form .input-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .search-form .input-wrapper .search-input {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  background: #fafcfc;
  border: 1.5px solid #007c91;
  padding: 7px 10px;
  border-radius: 5px;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 124, 145, 0.04);
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .search-form .input-wrapper .search-input::-moz-placeholder {
  color: #888;
  letter-spacing: 0.02em;
  opacity: 1;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .search-form .input-wrapper .search-input::placeholder {
  color: #888;
  letter-spacing: 0.02em;
  opacity: 1;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .search-form .input-wrapper .search-input:hover, .sci-store-container .sci-store-main-wrapper .filter-sidebar .search-form .input-wrapper .search-input:focus {
  border-color: #006769;
  box-shadow: 0 0 0 2px rgba(0, 124, 145, 0.13);
  background: #fff;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .search-form .input-wrapper .clear-btn {
  position: absolute;
  right: 57px;
  z-index: 2;
  background: transparent;
  border: none;
  color: #b1b7c4;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .search-form .input-wrapper .clear-btn:hover, .sci-store-container .sci-store-main-wrapper .filter-sidebar .search-form .input-wrapper .clear-btn:focus {
  color: #ee4444;
  outline: none;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .search-form .input-wrapper .search-btn {
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  padding: 19px 15px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.15s;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #006769;
  color: #fff;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .search-form .input-wrapper .search-btn:hover, .sci-store-container .sci-store-main-wrapper .filter-sidebar .search-form .input-wrapper .search-btn:focus {
  background: #003737;
  box-shadow: 0 2px 8px rgba(0, 124, 145, 0.04);
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form input[type=hidden] {
  display: none;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .search-global-filter-results {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 13px;
  font-weight: 500;
  color: #222;
  background: #fafcfc;
  border: 1.5px solid #007c91;
  padding: 10px 14px;
  border-radius: 5px;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 124, 145, 0.04);
  margin-bottom: 16px;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .search-global-filter-results::-moz-placeholder {
  color: #888;
  letter-spacing: 0.02em;
  opacity: 1;
  font-size: 13px;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .search-global-filter-results::placeholder {
  color: #888;
  letter-spacing: 0.02em;
  opacity: 1;
  font-size: 13px;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .search-global-filter-results:hover, .sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .search-global-filter-results:focus {
  border-color: #006769;
  box-shadow: 0 0 0 2px rgba(0, 124, 145, 0.13);
  background: #fff;
}
@media (max-width: 768px) {
  .sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .search-global-filter-results {
    font-size: 13px;
    padding: 8px 12px;
  }
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-sections .filter-section {
  margin-bottom: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-sections .filter-section:last-child {
  margin-bottom: 0;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-sections .filter-section .filter-section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  margin: 0;
  padding: 12px 16px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}
@media (max-width: 600px) {
  .sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-sections .filter-section .filter-section-title {
    padding: 10px;
    font-size: 14px;
  }
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-sections .filter-section .filter-section-title .title .filter-count {
  font-size: 12px;
  color: #9ca3af;
  background: #f3f4f6;
  padding: 2px 6px;
  border-radius: 10px;
}
@media (max-width: 600px) {
  .sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-sections .filter-section .filter-section-title .title .filter-count {
    font-size: 10px;
  }
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-sections .filter-section .filter-section-title .toggle-btn {
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-sections .filter-section .filter-section-title .toggle-btn i {
  font-size: 12px;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-sections .filter-section .filter-content {
  padding: 12px 16px;
}
@media (max-width: 600px) {
  .sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-sections .filter-section .filter-content {
    padding: 12px;
  }
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-sections .filter-section .filter-content.scrollable {
  flex: 1 1 auto;
  min-height: 0;
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-sections .filter-section .filter-content.scrollable::-webkit-scrollbar {
  width: 6px;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-sections .filter-section .filter-content.scrollable::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 3px;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-sections .filter-section .filter-content.scrollable::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-sections .filter-section .filter-content.scrollable::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-sections .filter-section .checkbox-group .form-check {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-sections .filter-section .checkbox-group .form-check:last-child {
  margin-bottom: 0;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-sections .filter-section .checkbox-group .form-check .form-check-input {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  border: 2px solid #d1d5db;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-sections .filter-section .checkbox-group .form-check .form-check-input:checked {
  background-color: #006769;
  border-color: #006769;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-sections .filter-section .checkbox-group .form-check .form-check-input:focus {
  box-shadow: 0 0 0 2px rgba(0, 103, 105, 0.2);
  outline: none;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-sections .filter-section .checkbox-group .form-check .form-check-label {
  font-size: 14px;
  color: #374151;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  line-height: 1.3;
  display: inline-block;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 600px) {
  .sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-sections .filter-section .checkbox-group .form-check .form-check-label {
    font-size: 12px;
  }
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-actions {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}
@media (max-width: 600px) {
  .sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-actions {
    margin: 14px 0 0 0;
  }
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-actions .btn {
  flex: 1;
  padding: 12px 12px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
@media (max-width: 600px) {
  .sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-actions .btn {
    padding: 5px;
    font-size: 12px;
  }
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-actions .btn.btn-primary {
  background: #006769;
  color: #fff;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-actions .btn.btn-primary:hover {
  background: #005557;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-actions .btn.btn-secondary {
  background: #f3f4f6;
  color: #6b7280;
  text-align: center;
}
.sci-store-container .sci-store-main-wrapper .filter-sidebar .filter-form .filter-actions .btn.btn-secondary:hover {
  background: #e5e7eb;
}
.sci-store-container .sci-store-main-wrapper .products-container {
  background: #fff;
  flex: 1;
  border-radius: 5px;
  min-height: 600px;
  padding: 20px 12px;
  box-shadow: 0 2px 8px 0 rgba(26, 38, 50, 0.03);
  position: relative;
}
@media (max-width: 600px) {
  .sci-store-container .sci-store-main-wrapper .products-container {
    padding: 15px 10px;
  }
}
.sci-store-container .sci-store-main-wrapper .products-container .section-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 10;
  text-align: center;
  pointer-events: all;
}
.sci-store-container .sci-store-main-wrapper .products-container .section-loader > div,
.sci-store-container .sci-store-main-wrapper .products-container .section-loader > p {
  position: relative;
  top: 100px;
  margin-left: auto;
  margin-right: auto;
}
.sci-store-container .sci-store-main-wrapper .products-container .section-loader .section-spinner {
  width: 40px;
  height: 40px;
  border: 5px solid #ccc;
  border-top: 5px solid #0073aa;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
.sci-store-container .sci-store-main-wrapper .products-container .section-loader .loader-text {
  margin-top: 10px;
  font-size: 16px;
  color: #0073aa;
  font-weight: bold;
}
.sci-store-container .sci-store-main-wrapper .products-container .product-not-found-container {
  margin: 20px 0;
  height: 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sci-store-container .sci-store-main-wrapper .products-container .product-not-found-container .product-not-found-icon {
  width: 200px;
  height: 200px;
  margin: 0 auto 14px auto;
  background: url("https://www.supremecomponents.com/wp-content/uploads/2025/09/no-results.png") no-repeat center center;
  background-size: contain;
}
.sci-store-container .sci-store-main-wrapper .products-container .product-not-found-container .product-not-found-title {
  font-size: 20px;
  color: #004f50;
  font-weight: 600;
  margin: 0 0 12px 0;
}
.sci-store-container .sci-store-main-wrapper .products-container .product-not-found-container .product-not-found-message {
  font-size: 16px;
  color: #333;
  margin: 0;
}
.sci-store-container .sci-store-main-wrapper .products-container .product-not-found-container .product-not-found-message a {
  color: #2779bd;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .sci-store-container .sci-store-main-wrapper .products-container .product-not-found-container .product-not-found-title {
    font-size: 16px;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .product-not-found-container .product-not-found-message {
    font-size: 13px;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .product-not-found-container .product-not-found-icon {
    width: 40px;
    height: 40px;
  }
}
.sci-store-container .sci-store-main-wrapper .products-container .product-results-header .results-count {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #202124;
  padding: 12px 16px;
  background: #f4f6f8;
  border-radius: 5px;
  border: 1px solid #dde2e7;
  max-width: -moz-fit-content;
  max-width: fit-content;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 600px) {
  .sci-store-container .sci-store-main-wrapper .products-container .product-results-header .results-count {
    font-size: 12px;
    padding: 10px;
    margin-bottom: 14px;
  }
}
.sci-store-container .sci-store-main-wrapper .products-container .product-results-header .results-count strong {
  color: #006769;
  font-weight: 700;
  margin-left: 4px;
  margin-right: 4px;
  font-style: normal;
}
.sci-store-container .sci-store-main-wrapper .products-container .product-sort-header {
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px dashed #e3e3e3;
}
@media (max-width: 600px) {
  .sci-store-container .sci-store-main-wrapper .products-container .product-sort-header {
    font-size: 12px;
  }
}
.sci-store-container .sci-store-main-wrapper .products-container .product-sort-header .sort-label {
  font-weight: bold;
  color: #004f50;
}
.sci-store-container .sci-store-main-wrapper .products-container .product-sort-header a {
  color: #004f50;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  font-weight: 500;
  transition: border-color 0.16s;
}
.sci-store-container .sci-store-main-wrapper .products-container .product-sort-header a.active {
  border-bottom: 2px solid #004f50;
}
.sci-store-container .sci-store-main-wrapper .products-container .search-notice {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border: 1px solid #ffeaa7;
  border-left: 4px solid #f39c12;
  border-radius: 6px;
  padding: 8px 16px;
  margin: 16px 0 0 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  animation: slideInDown 0.3s ease-out;
}
.sci-store-container .sci-store-main-wrapper .products-container .search-notice p {
  margin: 0;
  color: #8b4513;
  font-size: 14px;
  line-height: 1.5;
}
.sci-store-container .sci-store-main-wrapper .products-container .search-notice p strong {
  color: #d68910;
  font-weight: 600;
}
.sci-store-container .sci-store-main-wrapper .products-container .search-notice::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f05a";
  margin-right: 8px;
  font-size: 16px;
  color: #138496;
}
@media (max-width: 768px) {
  .sci-store-container .sci-store-main-wrapper .products-container .search-notice {
    margin: 12px 0 16px 0;
    padding: 10px 12px;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .search-notice p {
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  .sci-store-container .sci-store-main-wrapper .products-container .search-notice {
    padding: 10px;
    margin: 12px 0 12px 0;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .search-notice p {
    font-size: 12px;
  }
}
.sci-store-container .sci-store-main-wrapper .products-container .search-notice:hover {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
  transition: all 0.2s ease-in-out;
}
.sci-store-container .sci-store-main-wrapper .products-container .search-notice.search-notice--info {
  background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
  border-color: #bee5eb;
  border-left-color: #17a2b8;
}
.sci-store-container .sci-store-main-wrapper .products-container .search-notice.search-notice--info p {
  color: #0c5460;
}
.sci-store-container .sci-store-main-wrapper .products-container .search-notice.search-notice--info p strong {
  color: #138496;
}
.sci-store-container .sci-store-main-wrapper .products-container .search-notice.search-notice--warning {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border-color: #ffeaa7;
  border-left-color: #f39c12;
}
.sci-store-container .sci-store-main-wrapper .products-container .search-notice.search-notice--warning p {
  color: #8b4513;
}
.sci-store-container .sci-store-main-wrapper .products-container .search-notice.search-notice--warning p strong {
  color: #d68910;
}
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sci-store-container .sci-store-main-wrapper .products-container .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, max-content));
  gap: 20px;
  margin: 16px 0;
  max-width: 100%;
  justify-content: start;
}
@media (max-width: 768px) {
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid {
    gap: 12px;
    grid-template-columns: repeat(auto-fill, minmax(220px, max-content));
  }
}
@media (max-width: 480px) {
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid {
    gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(160px, max-content));
  }
}
.sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card {
  width: 100%;
  max-width: 270px;
  min-width: 270px;
  box-sizing: border-box;
  background: #fff;
  padding: 10px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.2s ease;
  opacity: 1;
  height: auto;
}
.sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 79, 80, 0.25);
}
@media (max-width: 600px) {
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card {
    padding: 7px;
  }
}
@media (min-width: 769px) {
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card {
    opacity: 0;
    animation-name: fadeInUp;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
    max-width: 270px;
    min-width: 270px;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(1) {
    animation-delay: 0.15s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(2) {
    animation-delay: 0.3s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(3) {
    animation-delay: 0.45s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(4) {
    animation-delay: 0.6s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(5) {
    animation-delay: 0.75s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(6) {
    animation-delay: 0.9s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(7) {
    animation-delay: 1.05s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(8) {
    animation-delay: 1.2s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(9) {
    animation-delay: 1.35s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(10) {
    animation-delay: 1.5s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(11) {
    animation-delay: 1.65s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(12) {
    animation-delay: 1.8s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(13) {
    animation-delay: 1.95s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(14) {
    animation-delay: 2.1s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(15) {
    animation-delay: 2.25s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(16) {
    animation-delay: 2.4s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(17) {
    animation-delay: 2.55s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(18) {
    animation-delay: 2.7s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(19) {
    animation-delay: 2.85s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(20) {
    animation-delay: 3s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(21) {
    animation-delay: 3.15s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(22) {
    animation-delay: 3.3s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(23) {
    animation-delay: 3.45s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(24) {
    animation-delay: 3.6s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(25) {
    animation-delay: 3.75s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(26) {
    animation-delay: 3.9s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(27) {
    animation-delay: 4.05s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(28) {
    animation-delay: 4.2s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(29) {
    animation-delay: 4.35s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(30) {
    animation-delay: 4.5s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(31) {
    animation-delay: 4.65s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(32) {
    animation-delay: 4.8s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(33) {
    animation-delay: 4.95s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(34) {
    animation-delay: 5.1s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(35) {
    animation-delay: 5.25s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(36) {
    animation-delay: 5.4s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(37) {
    animation-delay: 5.55s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(38) {
    animation-delay: 5.7s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(39) {
    animation-delay: 5.85s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(40) {
    animation-delay: 6s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(41) {
    animation-delay: 6.15s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(42) {
    animation-delay: 6.3s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(43) {
    animation-delay: 6.45s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(44) {
    animation-delay: 6.6s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(45) {
    animation-delay: 6.75s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(46) {
    animation-delay: 6.9s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(47) {
    animation-delay: 7.05s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(48) {
    animation-delay: 7.2s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(49) {
    animation-delay: 7.35s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(50) {
    animation-delay: 7.5s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(51) {
    animation-delay: 7.65s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(52) {
    animation-delay: 7.8s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(53) {
    animation-delay: 7.95s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(54) {
    animation-delay: 8.1s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(55) {
    animation-delay: 8.25s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(56) {
    animation-delay: 8.4s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(57) {
    animation-delay: 8.55s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(58) {
    animation-delay: 8.7s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(59) {
    animation-delay: 8.85s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(60) {
    animation-delay: 9s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(61) {
    animation-delay: 9.15s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(62) {
    animation-delay: 9.3s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(63) {
    animation-delay: 9.45s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(64) {
    animation-delay: 9.6s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(65) {
    animation-delay: 9.75s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(66) {
    animation-delay: 9.9s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(67) {
    animation-delay: 10.05s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(68) {
    animation-delay: 10.2s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(69) {
    animation-delay: 10.35s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(70) {
    animation-delay: 10.5s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(71) {
    animation-delay: 10.65s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(72) {
    animation-delay: 10.8s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(73) {
    animation-delay: 10.95s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(74) {
    animation-delay: 11.1s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(75) {
    animation-delay: 11.25s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(76) {
    animation-delay: 11.4s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(77) {
    animation-delay: 11.55s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(78) {
    animation-delay: 11.7s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(79) {
    animation-delay: 11.85s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(80) {
    animation-delay: 12s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(81) {
    animation-delay: 12.15s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(82) {
    animation-delay: 12.3s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(83) {
    animation-delay: 12.45s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(84) {
    animation-delay: 12.6s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(85) {
    animation-delay: 12.75s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(86) {
    animation-delay: 12.9s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(87) {
    animation-delay: 13.05s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(88) {
    animation-delay: 13.2s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(89) {
    animation-delay: 13.35s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(90) {
    animation-delay: 13.5s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(91) {
    animation-delay: 13.65s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(92) {
    animation-delay: 13.8s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(93) {
    animation-delay: 13.95s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(94) {
    animation-delay: 14.1s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(95) {
    animation-delay: 14.25s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(96) {
    animation-delay: 14.4s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(97) {
    animation-delay: 14.55s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(98) {
    animation-delay: 14.7s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(99) {
    animation-delay: 14.85s;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card:nth-child(100) {
    animation-delay: 15s;
  }
}
@media (max-width: 768px) {
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card {
    opacity: 0;
    animation-name: fadeInUp;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
    animation-delay: 0s !important;
    max-width: 100%;
    min-width: 0;
  }
}
.sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card .product-img-box {
  width: 100%;
  aspect-ratio: 1/0.7;
  padding: 0;
  border: 1.5px solid #e5e5e5;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 130px;
}
.sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card .product-img-box .product-icon {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: object-fit 0.3s ease;
  transition: object-fit 0.3s ease, -o-object-fit 0.3s ease;
}
@media (max-width: 1024px) {
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card .product-img-box {
    min-height: 120px;
  }
}
@media (max-width: 768px) {
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card .product-img-box {
    min-height: 100px;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card .product-img-box .product-icon {
    -o-object-fit: cover;
       object-fit: cover;
    /* optional: crops image on smaller screens */
  }
}
@media (max-width: 480px) {
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card .product-img-box {
    min-height: 80px;
  }
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card .product-img-box .product-icon {
    -o-object-fit: cover;
       object-fit: cover;
    /* crops image for mobile */
  }
}
.sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card .product-details {
  flex: 1 1 auto;
  width: 100%;
  text-align: left;
  margin-bottom: 7px;
  padding: 0 2px;
}
.sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card .product-name {
  font-size: 16px;
  font-weight: 700;
  color: #004f50;
  margin-bottom: 2px;
  line-height: 1.25;
  letter-spacing: 0.04em;
}
.sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card .product-name .highlight {
  background-color: #e0f2f1;
  color: #004f50;
  padding: 0 2px;
  border-radius: 2px;
}
.sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card .product-desc {
  color: #004f50;
  font-size: 12px;
  margin-bottom: 2px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
@media (max-width: 600px) {
  .sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card .product-desc {
    font-size: 10px;
  }
}
.sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card .product-brand {
  font-size: 12px;
  margin-bottom: 2px;
}
.sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card .product-brand .brand-label {
  color: #004f50;
}
.sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card .product-brand .brand-value {
  color: #636363;
  font-weight: 500;
}
.sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card .product-stock {
  font-size: 13px;
  margin-bottom: 2px;
}
.sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card .product-stock .stock-label {
  color: #004f50;
}
.sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card .product-stock .stock-qty {
  color: #007e02;
  font-weight: 600;
}
.sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card .product-price-box {
  font-size: 15px;
  margin: 7px 0 10px 0;
}
.sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card .product-price-box .currency {
  color: #004f50;
  font-weight: 500;
  margin-right: 4px;
}
.sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card .product-price-box .product-price {
  color: #004f50;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card .request-for-quote {
  width: 100%;
  font-size: 13px;
  font-weight: 700;
  border-radius: 3px;
  padding: 8px 0 7px 0;
  text-decoration: none;
  letter-spacing: 0.015em;
  margin-top: 8px;
  display: block;
  box-shadow: 0 4px 6px rgba(0, 79, 80, 0.08);
  transition: background 0.18s, color 0.18s, box-shadow 0.12s;
  border: none;
  text-align: center;
  background: #004f50;
  color: #fff;
  margin-bottom: 5px;
}
.sci-store-container .sci-store-main-wrapper .products-container .products-grid .product-card .request-for-quote:hover {
  background: #003737;
}
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 20px 0;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper {
    flex-direction: column;
    gap: 10px;
  }
}
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .pagination-count {
  font-size: 14px;
  white-space: nowrap;
}
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .pagination {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .pagination .prev-btn,
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .pagination .next-btn,
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .pagination .page-btn {
  background: white;
  border: 1px solid #ccc;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
}
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .pagination .prev-btn:hover,
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .pagination .next-btn:hover,
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .pagination .page-btn:hover {
  background: #006769;
  color: #ffffff;
  border-color: #006769;
}
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .pagination .prev-btn i,
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .pagination .next-btn i,
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .pagination .page-btn i {
  font-size: 14px;
}
@media (max-width: 768px) {
  .sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .pagination .page-btn {
    padding: 6px;
    min-width: 32px;
  }
}
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .pagination .active {
  background: #006769;
  color: #ffffff;
  border-color: #006769;
}
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .pagination .prev-btn:disabled,
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .pagination .next-btn:disabled {
  background: #eee;
  color: #888;
  cursor: not-allowed;
  border-color: #ddd;
  box-shadow: none;
}
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .pagination .prev-btn:disabled:hover,
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .pagination .next-btn:disabled:hover {
  background: #eee;
  color: #888;
  border-color: #ddd;
}
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .pagination .dots {
  padding: 6px 4px;
  font-weight: 500;
  color: #666;
  font-size: 14px;
}
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .goto-page {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .goto-page {
    margin: 5px 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .goto-page label {
  margin: 0;
  font-weight: 500;
  color: #333;
}
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .goto-page input {
  background: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 6px 8px;
  font-size: 14px;
  width: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .goto-page input:focus {
  outline: none;
  border-color: #006769;
  box-shadow: 0 0 0 2px rgba(0, 103, 105, 0.2);
}
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .goto-page input:hover {
  border-color: #006769;
}
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .goto-page input::-webkit-outer-spin-button, .sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .goto-page input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .goto-page input[type=number] {
  -moz-appearance: textfield;
}
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .goto-page button {
  background: #006769;
  color: #ffffff;
  border: 1px solid #006769;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .goto-page button:hover {
  background: #004d4f;
  border-color: #004d4f;
}
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .goto-page button:active {
  transform: translateY(1px);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .goto-page button:disabled {
  background: #eee;
  color: #888;
  cursor: not-allowed;
  border-color: #ddd;
  box-shadow: none;
}
.sci-store-container .sci-store-main-wrapper .products-container .pagination-wrapper .goto-page button:disabled:hover {
  background: #eee;
  color: #888;
  border-color: #ddd;
}/*# sourceMappingURL=main.css.map */