/*
 * JPRO product-grid-block — Best Sellers cards
 * All selectors scoped to .t1-product-grid--petshop-block / --jpro-block
 * No generic class names used — conflict-free with other theme CSS
 */

.t1-product-grid--petshop-block,
.t1-product-grid--jpro-block {
  --jpro-blue: #1a56c4;
  --jpro-blue-deep: #03318f;
  --jpro-ink: #1a1a1a;
  --jpro-muted: #8a8a8a;
  --jpro-border: #cfcfcf;
  width: 100%;
  padding: 56px 24px 72px;
  background: #ffffff;
  position: relative;
  z-index: 2;
  isolation: isolate;
}

.t1-product-grid.t1-product-grid--petshop-block,
.t1-product-grid.t1-product-grid--jpro-block {
  max-width: none;
  margin: 0;
}

/* ── Container ── */
.t1-product-grid--petshop-block .t1-pgb-container,
.t1-product-grid--jpro-block .t1-pgb-container {
  width: 100% !important;
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
  float: none !important;
}

/* ── Section head ── */
.t1-product-grid--petshop-block .t1-pgb-head,
.t1-product-grid--jpro-block .t1-pgb-head,
.t1-product-grid--petshop-block .t1-pgb-head--centered,
.t1-product-grid--jpro-block .t1-pgb-head--centered {
  display: flex !important;
  align-items: center;
  justify-content: center !important;
  width: 100% !important;
  margin: 0 0 36px;
  position: relative;
}

/* ── More link (hidden) ── */
.t1-product-grid--petshop-block .t1-pgb-more,
.t1-product-grid--jpro-block .t1-pgb-more,
.t1-product-grid--petshop-block .t1-pgb-more[hidden],
.t1-product-grid--jpro-block .t1-pgb-more[hidden],
.t1-product-grid--jpro-block .t1-pgb-head--centered .t1-pgb-more {
  display: none !important;
}

/* ── Title ── */
.t1-product-grid--petshop-block .t1-pgb-title,
.t1-product-grid--jpro-block .t1-pgb-title {
  font-family: "Playfair Display", "Times New Roman", Georgia, serif !important;
  color: rgb(9, 22, 84);
  font-size: clamp(30px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none !important;
  margin: 0 auto !important;
  line-height: 54px;
  text-align: center !important;
  position: relative;
  padding-bottom: 2px;
  width: 100% !important;
  display: block !important;
  float: none !important;
}

.t1-product-grid--petshop-block .t1-pgb-title::after,
.t1-product-grid--jpro-block .t1-pgb-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--jpro-blue);
  border-radius: 2px;
}
/* ── Empty state ── */
.t1-product-grid--petshop-block .t1-pgb-empty,
.t1-product-grid--jpro-block .t1-pgb-empty {
  background: #fff;
  border: 1px solid #ebebeb;
  padding: 28px;
  color: #666;
  text-align: center;
}

.t1-product-grid--petshop-block .t1-pgb-empty[hidden],
.t1-product-grid--jpro-block .t1-pgb-empty[hidden] {
  display: none !important;
}

/* ── Scroll wrapper ── */
.t1-product-grid--petshop-block .t1-pgb-scroll-wrapper,
.t1-product-grid--jpro-block .t1-pgb-scroll-wrapper {
  position: relative;
  width: 100%;
  overflow: visible;
}

/* ── Grid (horizontal scroll track) ── */
.t1-product-grid--petshop-block [data-pgb-items-body],
.t1-product-grid--petshop-block [data-pgb-items-body].t1-pgb-grid,
.t1-product-grid--petshop-block .t1-pgb-grid,
.t1-product-grid--jpro-block [data-pgb-items-body],
.t1-product-grid--jpro-block [data-pgb-items-body].t1-pgb-grid,
.t1-product-grid--jpro-block .t1-pgb-grid {
  --pgb-cols: 4;
  --pgb-gap: 24px;
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  /* Browsers force overflow-y to auto when overflow-x is not visible,
     so padding gives room for hover lift (translateY -6px) + blue shadow */
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 0 var(--pgb-gap) !important;
  width: 100% !important;
  padding-top: 20px;
  padding-bottom: 32px;
  margin: -20px 0 -24px !important;
}

.t1-product-grid--petshop-block .t1-pgb-grid::-webkit-scrollbar,
.t1-product-grid--jpro-block .t1-pgb-grid::-webkit-scrollbar {
  display: none;
}

/* ── Scroll arrow buttons ── */
.t1-product-grid--petshop-block .t1-pgb-scroll-btn,
.t1-product-grid--jpro-block .t1-pgb-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #1a56c4;
  background: #fff;
  color: #1a56c4;
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(3, 49, 143, 0.18);
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.t1-product-grid--petshop-block .t1-pgb-scroll-btn--prev,
.t1-product-grid--jpro-block .t1-pgb-scroll-btn--prev {
  left: -22px;
}

.t1-product-grid--petshop-block .t1-pgb-scroll-btn--next,
.t1-product-grid--jpro-block .t1-pgb-scroll-btn--next {
  right: -22px;
}

.t1-product-grid--petshop-block .t1-pgb-scroll-btn:hover,
.t1-product-grid--jpro-block .t1-pgb-scroll-btn:hover {
  background: #1a56c4;
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}

.t1-product-grid--petshop-block .t1-pgb-grid,
.t1-product-grid--jpro-block .t1-pgb-grid {
  scroll-padding-left: 0;
}

/* ── Card base ── */
.t1-product-grid--petshop-block .t1-pgb-product,
.t1-product-grid--jpro-block .t1-pgb-product {
  flex: 0 0 calc((100% - (var(--pgb-cols, 4) - 1) * var(--pgb-gap, 24px)) / var(--pgb-cols, 4));
  max-width: calc((100% - (var(--pgb-cols, 4) - 1) * var(--pgb-gap, 24px)) / var(--pgb-cols, 4));
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #eaedf2;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(3, 49, 143, 0.07);
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
  height: 100%;
  align-self: stretch;
  container-type: inline-size;
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    border-color 0.26s ease;
}

/* ── Card hover ── */
.t1-product-grid--petshop-block .t1-pgb-product:hover,
.t1-product-grid--petshop-block .t1-pgb-product:focus-within,
.t1-product-grid--jpro-block .t1-pgb-product:hover,
.t1-product-grid--jpro-block .t1-pgb-product:focus-within {
  z-index: 3;
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(3, 49, 143, 0.16);
  border-color: rgba(3, 49, 143, 0.20);
}

/* ── Image wrap ── */
.t1-product-grid--petshop-block .t1-pgb-img-wrap,
.t1-product-grid--jpro-block .t1-pgb-img-wrap {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  align-self: stretch !important;
  flex-shrink: 0;
  aspect-ratio: 3 / 3 !important;
  height: auto !important;
  min-height: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
  border: 0 !important;
}

/* Light blue overlay on hover */
.t1-product-grid--petshop-block .t1-pgb-img-wrap::before,
.t1-product-grid--jpro-block .t1-pgb-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(3, 49, 143, 0.11);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.26s ease, visibility 0.26s ease;
  pointer-events: none;
}

.t1-product-grid--petshop-block .t1-pgb-product:hover .t1-pgb-img-wrap::before,
.t1-product-grid--petshop-block .t1-pgb-product:focus-within .t1-pgb-img-wrap::before,
.t1-product-grid--jpro-block .t1-pgb-product:hover .t1-pgb-img-wrap::before,
.t1-product-grid--jpro-block .t1-pgb-product:focus-within .t1-pgb-img-wrap::before {
  opacity: 1;
  visibility: visible;
}

.t1-product-grid--petshop-block .t1-pgb-img-wrap::after,
.t1-product-grid--jpro-block .t1-pgb-img-wrap::after {
  content: none !important;
  display: none !important;
}

.t1-product-grid--petshop-block .t1-pgb-img-link,
.t1-product-grid--jpro-block .t1-pgb-img-link {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  line-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.t1-product-grid--petshop-block .t1-pgb-img-wrap img,
.t1-product-grid--petshop-block [data-pgb-img],
.t1-product-grid--jpro-block .t1-pgb-img-wrap img,
.t1-product-grid--jpro-block [data-pgb-img] {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  vertical-align: top;
}

/* ── Quick View (bottom bar on image) ── */
.t1-product-grid--petshop-block .t1-pgb-img-wrap .t1-pgb-quick-view,
.t1-product-grid--jpro-block .t1-pgb-img-wrap .t1-pgb-quick-view,
.t1-product-grid--petshop-block .t1-pgb-img-wrap [data-pgb-quick-view],
.t1-product-grid--jpro-block .t1-pgb-img-wrap [data-pgb-quick-view] {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  top: auto !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  transform: translateY(100%) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 12px 16px !important;
  box-sizing: border-box;
  background: #3d5bbf !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2 !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
  text-decoration: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none;
  z-index: 5;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
  transition:
    opacity 0.26s ease,
    visibility 0.26s ease,
    transform 0.26s ease,
    background 0.22s ease !important;
}

.t1-product-grid--petshop-block .t1-pgb-product:hover .t1-pgb-img-wrap .t1-pgb-quick-view,
.t1-product-grid--petshop-block .t1-pgb-product:hover .t1-pgb-img-wrap [data-pgb-quick-view],
.t1-product-grid--petshop-block .t1-pgb-product:focus-within .t1-pgb-img-wrap .t1-pgb-quick-view,
.t1-product-grid--petshop-block .t1-pgb-product:focus-within .t1-pgb-img-wrap [data-pgb-quick-view],
.t1-product-grid--jpro-block .t1-pgb-product:hover .t1-pgb-img-wrap .t1-pgb-quick-view,
.t1-product-grid--jpro-block .t1-pgb-product:hover .t1-pgb-img-wrap [data-pgb-quick-view],
.t1-product-grid--jpro-block .t1-pgb-product:focus-within .t1-pgb-img-wrap .t1-pgb-quick-view,
.t1-product-grid--jpro-block .t1-pgb-product:focus-within .t1-pgb-img-wrap [data-pgb-quick-view] {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

.t1-product-grid--petshop-block .t1-pgb-img-wrap .t1-pgb-quick-view:hover,
.t1-product-grid--petshop-block .t1-pgb-img-wrap [data-pgb-quick-view]:hover,
.t1-product-grid--jpro-block .t1-pgb-img-wrap .t1-pgb-quick-view:hover,
.t1-product-grid--jpro-block .t1-pgb-img-wrap [data-pgb-quick-view]:hover {
  background: #03318f !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

/* ── Sale badge ── */
.t1-product-grid--petshop-block .t1-pgb-sale,
.t1-product-grid--jpro-block .t1-pgb-sale {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: var(--jpro-blue-deep);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 5px 10px;
  line-height: 1;
}

/* ── Card body ── */
.t1-product-grid--petshop-block .t1-pgb-body,
.t1-product-grid--jpro-block .t1-pgb-body {
  padding: 12px 14px 14px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 0;
  width: 100%;
  box-sizing: border-box;
}

/* ── Title line ── */
.t1-product-grid--petshop-block .t1-pgb-title-line,
.t1-product-grid--jpro-block .t1-pgb-title-line {
  margin: 0 0 6px !important;
  padding: 0 !important;
  height: 38px !important;
  min-height: 38px !important;
  max-height: 38px !important;
  overflow: hidden !important;
  flex-shrink: 0;
}

/* ── Product name ── */
.t1-product-grid--petshop-block .t1-pgb-name,
.t1-product-grid--jpro-block .t1-pgb-name,
.t1-product-grid--petshop-block [data-pgb-name],
.t1-product-grid--jpro-block [data-pgb-name] {
  font-family: "Open Sans", "Montserrat", sans-serif;
  font-size: 13px !important;
  font-weight: 600;
  color: var(--jpro-ink) !important;
  text-decoration: none;
  line-height: 1.46 !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden !important;
  height: 38px !important;
  max-height: 38px !important;
}

.t1-product-grid--petshop-block .t1-pgb-name:hover,
.t1-product-grid--jpro-block .t1-pgb-name:hover {
  color: var(--jpro-blue) !important;
}

/* ── Price ── */
.t1-product-grid--petshop-block .t1-pgb-price-row,
.t1-product-grid--jpro-block .t1-pgb-price-row,
.t1-product-grid--petshop-block [data-pgb-price],
.t1-product-grid--jpro-block [data-pgb-price] {
  font-family: "Open Sans", "Montserrat", sans-serif;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #3d5bbf !important;
  margin: 0 0 4px;
  line-height: 1.2;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.t1-product-grid--jpro-block .t1-pgb-price-row s,
.t1-product-grid--jpro-block .t1-pgb-compare {
  color: var(--jpro-muted);
  font-weight: 500;
  font-size: 14px;
  margin-left: 6px;
}

/* ── Shipping link ── */
.t1-product-grid--petshop-block .t1-pgb-shipping,
.t1-product-grid--jpro-block .t1-pgb-shipping {
  display: inline-block !important;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--jpro-muted) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin: 0 0 8px;
  width: fit-content;
}

.t1-product-grid--jpro-block .t1-pgb-shipping:hover {
  color: var(--jpro-blue) !important;
}

/* ── Qty control ── */
.t1-product-grid--petshop-block .t1-pgb-qty,
.t1-product-grid--jpro-block .t1-pgb-qty,
.t1-product-grid--petshop-block [data-pgb-qty-wrap],
.t1-product-grid--jpro-block [data-pgb-qty-wrap] {
  display: grid !important;
  grid-template-columns: 34px 1fr 34px;
  align-items: stretch;
  width: 100%;
  border: 1px solid var(--jpro-border);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  margin-top: auto !important;
  margin-bottom: 8px !important;
  box-sizing: border-box;
}

.t1-product-grid--petshop-block .t1-pg-qty-btn,
.t1-product-grid--jpro-block .t1-pg-qty-btn {
  appearance: none !important;
  -webkit-appearance: none !important;
  border: 0 !important;
  background: #fff !important;
  background-color: #fff !important;
  color: #333 !important;
  -webkit-text-fill-color: #333 !important;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  min-height: 34px;
  transition: background 0.2s ease, color 0.2s ease;
}

.t1-product-grid--petshop-block .t1-pg-qty-btn:hover:not(:disabled),
.t1-product-grid--jpro-block .t1-pg-qty-btn:hover:not(:disabled) {
  background: #1a56c4 !important;
  background-color: #1a56c4 !important;
  border: 1px solid #1a56c4 !important;
  border-radius: 2px;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.t1-product-grid--petshop-block .t1-pg-qty-input,
.t1-product-grid--jpro-block .t1-pg-qty-input {
  width: 100%;
  border: 0;
  border-left: 1px solid #cfcfcf;
  border-right: 1px solid #cfcfcf;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #222;
  background: #fff;
  min-height: 34px;
  padding: 0;
  -moz-appearance: textfield;
  box-sizing: border-box;
}

.t1-product-grid--jpro-block .t1-pg-qty-input::-webkit-outer-spin-button,
.t1-product-grid--jpro-block .t1-pg-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ── Add to cart button ── */
.t1-product-grid--petshop-block .t1-pgb-cta,
.t1-product-grid--jpro-block .t1-pgb-cta,
.t1-product-grid--petshop-block [data-pgb-add-to-cart],
.t1-product-grid--jpro-block [data-pgb-add-to-cart] {
  display: block !important;
  width: 100%;
  background: #3d5bbf !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-family: "Open Sans", "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.2px;
  padding: 11px 14px;
  border: 0 !important;
  border-radius: 20px;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease;
  margin-top: 0;
  margin-bottom: 0;
  box-shadow: none;
}

.t1-product-grid--petshop-block .t1-pgb-cta:hover:not(:disabled),
.t1-product-grid--jpro-block .t1-pgb-cta:hover:not(:disabled) {
  background: #3d5bbf !important;
  background-color: #3d5bbf !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-decoration: underline;
}

/* ── Responsive ── */
/* Tablet: 2 cards */
@media (max-width: 1000px) {
  .t1-product-grid--petshop-block .t1-pgb-grid,
  .t1-product-grid--jpro-block .t1-pgb-grid,
  .t1-product-grid--petshop-block [data-pgb-items-body],
  .t1-product-grid--jpro-block [data-pgb-items-body] {
    --pgb-cols: 2;
    --pgb-gap: 16px;
  }

  .t1-product-grid--petshop-block .t1-pgb-product,
  .t1-product-grid--jpro-block .t1-pgb-product {
    flex: 0 0 calc((100% - (var(--pgb-cols, 2) - 1) * var(--pgb-gap, 16px)) / var(--pgb-cols, 2)) !important;
    max-width: calc((100% - (var(--pgb-cols, 2) - 1) * var(--pgb-gap, 16px)) / var(--pgb-cols, 2)) !important;
    min-width: 0 !important;
  }

  .t1-product-grid--petshop-block .t1-pgb-scroll-btn--prev,
  .t1-product-grid--jpro-block .t1-pgb-scroll-btn--prev {
    left: -16px;
  }

  .t1-product-grid--petshop-block .t1-pgb-scroll-btn--next,
  .t1-product-grid--jpro-block .t1-pgb-scroll-btn--next {
    right: -16px;
  }

  /* Touch: always show Quick View at bottom of image */
  .t1-product-grid--petshop-block .t1-pgb-quick-view,
  .t1-product-grid--petshop-block [data-pgb-quick-view],
  .t1-product-grid--jpro-block .t1-pgb-quick-view,
  .t1-product-grid--jpro-block [data-pgb-quick-view] {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
    font-size: 11px;
    padding: 11px 16px !important;
  }
}

/* Mobile: 1 card */
@media (max-width: 640px) {
  .t1-product-grid--petshop-block,
  .t1-product-grid--jpro-block {
    padding: 40px 16px 56px;
  }

  .t1-product-grid--petshop-block .t1-pgb-grid,
  .t1-product-grid--jpro-block .t1-pgb-grid,
  .t1-product-grid--petshop-block [data-pgb-items-body],
  .t1-product-grid--jpro-block [data-pgb-items-body] {
    --pgb-cols: 1;
    --pgb-gap: 12px;
  }

  .t1-product-grid--petshop-block .t1-pgb-product,
  .t1-product-grid--jpro-block .t1-pgb-product {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .t1-product-grid--petshop-block .t1-pgb-scroll-btn,
  .t1-product-grid--jpro-block .t1-pgb-scroll-btn {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .t1-product-grid--petshop-block .t1-pgb-scroll-btn--prev,
  .t1-product-grid--jpro-block .t1-pgb-scroll-btn--prev {
    left: -12px;
  }

  .t1-product-grid--petshop-block .t1-pgb-scroll-btn--next,
  .t1-product-grid--jpro-block .t1-pgb-scroll-btn--next {
    right: -12px;
  }

  .t1-product-grid--petshop-block .t1-pgb-name,
  .t1-product-grid--jpro-block .t1-pgb-name {
    font-size: 13px !important;
    height: 37px !important;
    max-height: 37px !important;
  }

  .t1-product-grid--petshop-block .t1-pgb-title-line,
  .t1-product-grid--jpro-block .t1-pgb-title-line {
    height: 37px !important;
    min-height: 37px !important;
    max-height: 37px !important;
  }

  /* Mobile: Quick View always visible, full width, bottom of image */
  .t1-product-grid--petshop-block .t1-pgb-quick-view,
  .t1-product-grid--petshop-block [data-pgb-quick-view],
  .t1-product-grid--jpro-block .t1-pgb-quick-view,
  .t1-product-grid--jpro-block [data-pgb-quick-view] {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
    font-size: 12px;
    padding: 12px 16px !important;
    letter-spacing: 1.5px;
  }
}