/*
// Gamarent theme layer — loaded after style.css.
// Base variables + accent-state recolors; homepage/section styles appended below.
*/
:root {
  --gr-accent: #f5811e;
  --gr-accent-dark: #d96f0e;
  --gr-accent-darker: #c05f05;
  --gr-accent-soft: #fdeedd;
  --gr-dark: #262b30;
  --gr-text: #3d464d;
  --gr-muted: #6c757d;
  --gr-radius: 12px;
  --gr-shadow: 0 8px 24px rgba(38, 43, 48, 0.08);
  --gr-shadow-hover: 0 14px 32px rgba(38, 43, 48, 0.14);
}

/* Primary button states: slate -> darker orange */
.btn-primary.focus, .btn-primary:focus, .btn-primary:hover {
  border-color: var(--gr-accent-dark);
  background: var(--gr-accent-dark);
}
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active {
  border-color: var(--gr-accent-darker);
  background: var(--gr-accent-darker);
}

/* Tool icons (inline full-color SVGs) */
.gr-icon {
  display: inline-block;
  vertical-align: middle;
}
.gr-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ---------- logo ---------- */
.gr-logo { height: 36px; width: auto; display: block; }
.gr-logo--mobile { height: 28px; }
@media (min-width: 992px) and (max-width: 1199px) {
  .gr-logo { height: 32px; }
}

/* ---------- hero slider ---------- */
.gr-hero { --gr-hero-dur: 6500ms; margin-top: 20px; }
.gr-hero__frame {
  position: relative;
  min-height: 430px;
  border-radius: var(--gr-radius);
  overflow: hidden;
  background: var(--gr-dark);
  isolation: isolate;
}
.gr-hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
  z-index: 1;
}
.gr-hero__slide.is-active { opacity: 1; pointer-events: auto; z-index: 2; }
.gr-hero__media {
  position: absolute;
  inset: 0;
  background: var(--img-desktop) center right / cover no-repeat;
}
.gr-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 26, 30, .84) 0%, rgba(23, 26, 30, .55) 45%, rgba(23, 26, 30, .08) 100%);
}
.gr-hero__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 56px 48px 84px;
}
.gr-hero__title {
  color: #fff;
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 14px;
}
.gr-hero__text {
  color: rgba(255, 255, 255, .85);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 26px;
  max-width: 440px;
}
.gr-hero__slide .gr-hero__title,
.gr-hero__slide .gr-hero__text,
.gr-hero__slide .gr-hero__cta {
  transform: translateY(14px);
  opacity: 0;
  transition: transform .55s ease .15s, opacity .55s ease .15s;
}
.gr-hero__slide .gr-hero__text { transition-delay: .25s; }
.gr-hero__slide .gr-hero__cta { transition-delay: .35s; }
.gr-hero__slide.is-active .gr-hero__title,
.gr-hero__slide.is-active .gr-hero__text,
.gr-hero__slide.is-active .gr-hero__cta {
  transform: none;
  opacity: 1;
}
.gr-hero__dots {
  position: absolute;
  left: 48px;
  bottom: 30px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.gr-hero__dot {
  width: 34px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: rgba(255, 255, 255, .28);
  overflow: hidden;
  cursor: pointer;
}
.gr-hero__dot-fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background: var(--gr-accent);
  transform: translateX(-101%);
}
.gr-hero__dot.is-active .gr-hero__dot-fill {
  animation: gr-hero-progress var(--gr-hero-dur) linear forwards;
}
.gr-hero.is-paused .gr-hero__dot-fill,
.gr-hero.is-static .gr-hero__dot-fill { animation-play-state: paused; }
.gr-hero.is-static .gr-hero__dot.is-active .gr-hero__dot-fill { animation: none; transform: none; }
@keyframes gr-hero-progress {
  from { transform: translateX(-101%); }
  to { transform: translateX(0); }
}
.gr-hero__arrows {
  position: absolute;
  right: 28px;
  bottom: 20px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.gr-hero__arrow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: rgba(23, 26, 30, .3);
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.gr-hero__arrow:hover { background: var(--gr-accent); border-color: var(--gr-accent); }
.gr-hero__dot:focus,
.gr-hero__arrow:focus { outline: none; }
.gr-hero__dot:focus-visible,
.gr-hero__arrow:focus-visible { outline: 2px solid var(--gr-accent); outline-offset: 2px; }
@media (max-width: 991px) {
  .gr-hero__frame { min-height: 380px; }
  .gr-hero__content { padding: 40px 32px 76px; }
  .gr-hero__dots { left: 32px; }
}
@media (max-width: 575px) {
  .gr-hero { margin-top: 12px; }
  .gr-hero__frame { min-height: 340px; }
  .gr-hero__media { background-image: var(--img-mobile); }
  .gr-hero__content { padding: 30px 22px 70px; }
  .gr-hero__text { font-size: 15px; }
  .gr-hero__dots { left: 22px; bottom: 26px; }
  .gr-hero__arrows { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .gr-hero__slide { transition: none; }
  .gr-hero__slide .gr-hero__title,
  .gr-hero__slide .gr-hero__text,
  .gr-hero__slide .gr-hero__cta { transition: none; }
}

/* ---------- sticky nav (desktop) ---------- */
@media (min-width: 992px) {
  /* smooth drop-in when the nav sticks below the hero */
  .nav-panel--stuck.nav-panel--show { animation: gr-nav-drop .32s ease; }
  /* smooth slide-out on unstick: a disposable ghost bar added from site.js */
  .nav-panel--sticky.gr-nav-exit {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    pointer-events: none;
    animation: gr-nav-up .28s ease forwards;
  }
  /* the ghost is cloned collapsed — never let a panel expand inside it */
  .gr-nav-exit .departments__body {
    height: 42px !important;
    overflow: hidden;
    box-shadow: none;
  }
  .gr-nav-exit .departments__links-wrapper { display: none; }
  /* fixed categories panel fades back in when the nav unsticks */
  .departments--fixed .departments__links-wrapper { animation: gr-fade-in .3s ease; }
}
@keyframes gr-nav-drop {
  from { transform: translateY(-100%); }
  to { transform: none; }
}
@keyframes gr-nav-up {
  from { transform: none; }
  to { transform: translateY(-110%); }
}
@keyframes gr-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .nav-panel--stuck.nav-panel--show,
  .nav-panel--sticky.gr-nav-exit,
  .departments--fixed .departments__links-wrapper { animation: none; }
}

/* ---------- navbar search (in the sticky nav) ---------- */
.gr-navsearch {
  position: relative;
  display: none;
  align-items: center;
  margin-right: 4px;
}
.nav-panel--stuck .gr-navsearch { display: flex; }
.gr-navsearch__toggle {
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: background .2s;
}
.gr-navsearch__toggle:hover { background: rgba(255, 255, 255, .16); }
.gr-navsearch__toggle:focus { outline: none; }
.gr-navsearch__toggle:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.gr-navsearch__toggle .fa-search,
.gr-navsearch__toggle .fa-times {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s, transform .2s;
}
.gr-navsearch__toggle .fa-times { opacity: 0; transform: rotate(-90deg); }
.gr-navsearch.is-open .gr-navsearch__toggle .fa-search { opacity: 0; transform: rotate(90deg); }
.gr-navsearch.is-open .gr-navsearch__toggle .fa-times { opacity: 1; transform: none; }

/* Expanding pill: right-anchored overlay, no layout shift */
.gr-navsearch__search {
  position: absolute;
  top: 50%;
  right: calc(100% + 8px);
  transform: translateY(-50%);
  width: 0;
  opacity: 0;
  visibility: hidden;
  transition: width .3s ease, opacity .2s ease, visibility 0s .3s;
  z-index: 5;
}
.gr-navsearch.is-open .gr-navsearch__search {
  width: min(340px, calc(100vw - 140px));
  opacity: 1;
  visibility: visible;
  transition: width .3s ease, opacity .2s ease;
}
.search--location--navbar .search__body { position: relative; }
.search--location--navbar .search__form {
  display: flex;
  align-items: center;
  height: 38px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
  overflow: hidden;
}
.search--location--navbar .search__input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0 6px 0 18px;
  font-size: 14px;
  color: var(--gr-text);
}
.search--location--navbar .search__input:focus { outline: none; }
.search--location--navbar .search__input::placeholder { color: #9aa1a7; }
.search--location--navbar .search__button--type--submit {
  position: relative;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  margin-right: 4px;
  border: 0;
  border-radius: 50%;
  background: var(--gr-accent);
  fill: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.search--location--navbar .search__button--type--submit:hover { background: var(--gr-accent-dark); }
.search--location--navbar .search__button--type--submit .fas { color: #fff; font-size: 13px; }
.search--location--navbar.search--loading .search__button--type--submit::after {
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border-color: rgba(255, 255, 255, .35);
  border-top-color: #fff;
}
.search--location--navbar .search__border { display: none; }

/* Suggestions dropdown under the pill */
.search--location--navbar .search__suggestions {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: auto;
  width: min(340px, calc(100vw - 140px));
  background: #fff;
  color: var(--gr-text);
  border-radius: 14px;
  border: 1px solid #eef0f2;
  box-shadow: 0 18px 44px rgba(38, 43, 48, .2);
  padding: 8px 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, visibility 0s .2s;
}
.search--location--navbar.search--has-suggestions.search--suggestions-open .search__suggestions {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .2s;
}
@media (prefers-reduced-motion: reduce) {
  .gr-navsearch__search { transition: none; }
  .gr-navsearch__toggle .fa-search,
  .gr-navsearch__toggle .fa-times { transition: none; }
}

/* ---------- account dropdown (header login) ---------- */
/* logged-in: the plain icon swaps for a small avatar chip */
.gr-account-chip {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: var(--gr-accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .18);
}
.gr-account-chip img { width: 100%; height: 100%; object-fit: cover; }
.gr-account {
  width: 320px;
  background: #fff;
  color: var(--gr-text);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(38, 43, 48, .22);
  padding: 20px;
}
.gr-account__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}
.gr-account-spinner {
  width: 26px;
  height: 26px;
  border: 3px solid rgba(245, 129, 30, .2);
  border-top-color: var(--gr-accent);
  border-radius: 50%;
  animation: gr-spin .6s linear infinite;
}
.gr-account__title { font-size: 17px; font-weight: 700; margin-bottom: 14px; }
.gr-account__alert {
  font-size: 13px;
  line-height: 1.4;
  padding: 9px 12px;
  border-radius: 10px;
  margin-bottom: 12px;
  background: #fdecea;
  color: #b02a37;
}
.gr-account__alert--success { background: #e8f6ec; color: #1e7c37; }
.gr-account.is-shaking { animation: gr-shake .4s ease; }
@keyframes gr-shake {
  20% { transform: translateX(-7px); }
  45% { transform: translateX(6px); }
  70% { transform: translateX(-4px); }
  90% { transform: translateX(2px); }
}

/* fields */
.gr-field { margin-bottom: 12px; }
.gr-field__label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gr-muted);
  margin-bottom: 5px;
}
.gr-field__wrap { position: relative; }
.gr-field__input {
  width: 100%;
  height: 40px;
  border: 1px solid #e3e6ea;
  border-radius: 10px;
  padding: 0 14px;
  font-size: 14px;
  color: var(--gr-text);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.gr-field__input::placeholder { color: #b7bec5; }
.gr-field__input:focus {
  outline: none;
  border-color: var(--gr-accent);
  box-shadow: 0 0 0 3px rgba(245, 129, 30, .15);
}
.gr-field--invalid .gr-field__input {
  border-color: #d9534f;
}
.gr-field--invalid .gr-field__input:focus {
  box-shadow: 0 0 0 3px rgba(217, 83, 79, .15);
}
.gr-field__error {
  display: none;
  font-size: 12.5px;
  color: #b02a37;
  margin-top: 4px;
}
.gr-field--invalid .gr-field__error { display: block; }
.gr-field__wrap .gr-field__input { padding-right: 42px; }
.gr-field__eye {
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #9aa1a7;
  cursor: pointer;
  transition: color .15s;
}
.gr-field__eye:hover { color: var(--gr-text); }
.gr-field__eye:focus { outline: none; }

/* remember checkbox */
.gr-account__check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--gr-text);
  margin: 2px 0 14px;
  cursor: pointer;
  user-select: none;
}
.gr-account__check input { position: absolute; opacity: 0; pointer-events: none; }
.gr-account__checkbox {
  width: 19px;
  height: 19px;
  border: 1.5px solid #cfd5da;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  background: #fff;
  transition: background .15s, border-color .15s;
}
.gr-account__check input:checked + .gr-account__checkbox {
  background: var(--gr-accent);
  border-color: var(--gr-accent);
}
.gr-account__check input:focus-visible + .gr-account__checkbox {
  box-shadow: 0 0 0 3px rgba(245, 129, 30, .2);
}

/* buttons */
.gr-account__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 42px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.gr-account__btn--primary {
  border: 0;
  background: var(--gr-accent);
  color: #fff;
}
.gr-account__btn--primary:hover { background: var(--gr-accent-dark); color: #fff; }
.gr-account__btn--ghost {
  border: 1px solid #e3e6ea;
  background: #fff;
  color: var(--gr-text);
  margin-top: 8px;
}
.gr-account__btn--ghost:hover { border-color: #d9534f; color: #d9534f; }
.gr-account__btn.is-loading { pointer-events: none; }
.gr-account__btn.is-loading [data-role="label"],
.gr-account__btn.is-loading .fas { opacity: 0; }
.gr-account__btn.is-loading::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: gr-spin .6s linear infinite;
}
.gr-account__btn--ghost.is-loading::after {
  border-color: rgba(61, 70, 77, .2);
  border-top-color: var(--gr-text);
}

/* logged-in view */
.gr-account__identity {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.gr-account__avatar {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gr-accent-soft);
  color: var(--gr-accent);
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-transform: uppercase;
}
.gr-account__avatar img { width: 100%; height: 100%; object-fit: cover; }
.gr-account__who { min-width: 0; display: flex; flex-direction: column; }
.gr-account__name {
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gr-account__email {
  font-size: 12.5px;
  color: var(--gr-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gr-account__role {
  margin-left: auto;
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--gr-accent);
  background: var(--gr-accent-soft);
  border-radius: 999px;
  padding: 3px 9px;
}
@media (prefers-reduced-motion: reduce) {
  .gr-account.is-shaking { animation: none; }
}

/* ---------- header categories panel ---------- */
.departments--open:not(.departments--fixed) .departments__body {
  box-shadow: var(--gr-shadow-hover);
}
.departments--open .departments__body {
  border-radius: 0 0 var(--gr-radius) var(--gr-radius);
}
.departments__item-link { padding-top: 9px; padding-bottom: 9px; }
.departments--fixed .departments__button-arrow { display: none; }

/* ---------- generic section ---------- */
.gr-section { padding: 8px 0 40px; }
.gr-section--tinted { background: #f7f8f9; padding: 40px 0; margin-bottom: 40px; }
.gr-section__header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.gr-section__title { font-size: 24px; font-weight: 700; margin: 0; color: var(--gr-text); }
.gr-section__divider { flex-grow: 1; height: 2px; background: #ebebeb; border-radius: 2px; position: relative; }
.gr-section__divider::before { content: ''; position: absolute; left: 0; top: 0; width: 56px; height: 2px; background: var(--gr-accent); }
.gr-section__link { white-space: nowrap; font-weight: 500; color: var(--gr-accent); }
.gr-section__link:hover { color: var(--gr-accent-dark); }
.gr-section__link .fas { font-size: 12px; margin-left: 4px; }

/* ---------- features strip ---------- */
.gr-features { margin: 26px 0 36px; }
.gr-features__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gr-features__item {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid #ebebeb; border-radius: var(--gr-radius);
  padding: 18px 20px;
  transition: box-shadow .2s, transform .2s;
}
.gr-features__item:hover { box-shadow: var(--gr-shadow); transform: translateY(-2px); }
/* mobile slider mode (owl init from site.js) */
.gr-features__list--slider { display: block; }
.gr-features__list--slider .gr-features__item { margin: 0; }
.gr-features__list--slider .owl-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}
.gr-features__list--slider button.owl-dot {
  width: 8px;
  height: 8px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: #d8dde2;
  transition: background .2s, width .2s;
}
.gr-features__list--slider button.owl-dot.active { background: var(--gr-accent); width: 22px; }
.gr-features__list--slider button.owl-dot:focus { outline: none; }
.gr-features__icon { flex: 0 0 auto; }
.gr-features__title { font-weight: 700; font-size: 15px; color: var(--gr-text); }
.gr-features__subtitle { font-size: 13px; color: var(--gr-muted); margin-top: 2px; }

/* ---------- category wall (pegboard) ---------- */
.gr-catwall {
  background-image: radial-gradient(rgba(38, 43, 48, .07) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  padding-top: 32px;
  padding-bottom: 44px;
}
.gr-cat-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.gr-cat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: var(--gr-radius);
  padding: 22px 12px 18px;
  color: var(--gr-text);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.gr-cat-tile:hover,
.gr-cat-tile:focus-visible {
  box-shadow: var(--gr-shadow-hover);
  transform: translateY(-4px);
  border-color: var(--gr-accent);
  color: var(--gr-text);
}
.gr-cat-tile:focus-visible { outline: 2px solid var(--gr-accent); outline-offset: 2px; }
.gr-cat-tile__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gr-accent-soft);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 8px;
  transition: transform .2s;
}
.gr-cat-tile:hover .gr-cat-tile__icon { transform: scale(1.08); }
.gr-cat-tile__img { width: 100%; height: 100%; object-fit: cover; }
.gr-cat-tile__name { font-weight: 700; font-size: 14.5px; line-height: 1.3; }
.gr-cat-tile__count { font-size: 12.5px; color: var(--gr-muted); }
@media (max-width: 1199px) { .gr-cat-wall { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 767px) { .gr-cat-wall { grid-template-columns: repeat(3, 1fr); gap: 10px; } }
@media (max-width: 575px) {
  .gr-cat-wall { grid-template-columns: repeat(2, 1fr); }
  .gr-cat-tile__icon { width: 60px; height: 60px; border-radius: 14px; }
}

/* ---------- product cards ---------- */
.gr-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gr-product-card {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid #ebebeb; border-radius: var(--gr-radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
/* whole card clickable: name link stretches over the card, other controls stay above */
.gr-product-card__name a::before { content: ''; position: absolute; inset: 0; z-index: 1; }
.gr-product-card__footer .btn { position: relative; z-index: 2; }
.gr-product-card:hover { box-shadow: var(--gr-shadow-hover); transform: translateY(-3px); }
.gr-product-card--unavailable { opacity: .75; }
.gr-product-card__media {
  position: relative; display: flex; align-items: center; justify-content: center;
  aspect-ratio: 4 / 3; overflow: hidden;
  /* pegboard backdrop shows behind icon products; photos cover it fully */
  background-color: #fff;
  background-image: radial-gradient(rgba(38, 43, 48, .06) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}
.gr-product-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gr-product-card:hover .gr-product-card__img { transform: scale(1.04); }
.gr-media-icon { display: flex; align-items: center; justify-content: center; }
.gr-media-icon--placeholder .gr-icon { filter: grayscale(1); opacity: .45; }
/* icon products get a soft accent chip (same language as category tiles) */
.gr-product-card__media .gr-media-icon {
  width: 104px; height: 104px;
  background: var(--gr-accent-soft);
  border-radius: 26px;
  transition: transform .25s ease;
}
.gr-product-card:hover .gr-product-card__media .gr-media-icon { transform: scale(1.07); }
.gr-product-card__media .gr-media-icon--placeholder { background: #f2f4f6; }
.gr-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--gr-accent); color: #fff;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px;
  border-radius: 999px; padding: 4px 10px;
}
.gr-badge--muted { background: #6c757d; }
.gr-product-card__body { display: flex; flex-direction: column; flex-grow: 1; padding: 14px 16px 16px; }
/* fixed slots: category 1 line, name 2 lines, desc 3 lines — clamp with ellipsis */
.gr-product-card__category { font-size: 12px; color: var(--gr-muted); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 4px; min-height: 1.3em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gr-product-card__name {
  font-size: 15px; font-weight: 700; margin: 0 0 6px; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 2.7em;
}
.gr-product-card__name a { color: var(--gr-text); }
.gr-product-card__name a:hover { color: var(--gr-accent); }
.gr-product-card__desc {
  font-size: 13px; color: var(--gr-muted); margin-bottom: 10px; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden; min-height: 4.5em;
}
.gr-product-card__footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.gr-product-card__price { font-size: 14px; color: var(--gr-text); }
.gr-product-card__price strong { color: var(--gr-accent); font-size: 16px; }

/* ---------- featured slider (one row, always) ---------- */
.gr-featured .gr-badge:not(.gr-badge--muted) { display: none; }
.gr-featured__slider .owl-stage { display: flex; }
.gr-featured__slider .owl-item { display: flex; }
.gr-featured__slider .owl-item .gr-product-card { width: 100%; }
.gr-featured__slider .owl-item img { width: auto; }
.gr-featured__slider .gr-product-card__img { width: 100%; }
.gr-featured__slider .owl-dots {
  display: flex; justify-content: center; gap: 6px; margin-top: 20px;
}
.gr-featured__slider .owl-dots.disabled { display: none; }
/* button.owl-dot beats vendor .owl-carousel button.owl-dot { background: none } */
.gr-featured__slider button.owl-dot {
  width: 8px; height: 8px; border: 0; border-radius: 999px; padding: 0;
  background: #c3c9cf; transition: background .2s, width .2s; cursor: pointer;
}
.gr-featured__slider button.owl-dot.active { background: var(--gr-accent); width: 22px; }
.gr-featured__slider .owl-dot:focus { outline: none; }
.gr-featured__slider .owl-dot:focus-visible { outline: 2px solid var(--gr-accent); outline-offset: 2px; }

.gr-section__tools { display: flex; align-items: center; gap: 14px; }
.gr-featured__nav { display: flex; gap: 6px; }
.gr-featured__nav.disabled { display: none; }
.gr-featured__nav button {
  width: 34px; height: 34px;
  border: 1px solid #e3e6ea; border-radius: 50%;
  background: #fff; color: var(--gr-text);
  font-size: 12px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s, color .15s, opacity .15s;
}
.gr-featured__nav button:hover { background: var(--gr-accent); border-color: var(--gr-accent); color: #fff; }
.gr-featured__nav button.disabled { opacity: .35; pointer-events: none; }
.gr-featured__nav button:focus { outline: none; }
.gr-featured__nav button:focus-visible { outline: 2px solid var(--gr-accent); outline-offset: 2px; }

/* ---------- section CTA pill ---------- */
.gr-section__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--gr-text);
  background: #fff; border: 1px solid #e3e6ea; border-radius: 999px;
  padding: 5px 5px 5px 16px;
  white-space: nowrap;
  transition: border-color .15s, color .15s, box-shadow .15s;
}
.gr-section__cta-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gr-accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}
.gr-section__cta:hover {
  border-color: var(--gr-accent); color: var(--gr-accent);
  box-shadow: 0 6px 16px rgba(245, 129, 30, .18);
}
@media (max-width: 575px) {
  .gr-section__header { flex-wrap: wrap; row-gap: 10px; }
  .gr-section__divider { order: 3; display: none; }
  /* swipe + dots are enough on touch */
  .gr-featured__nav { display: none; }
}

/* ---------- about (content + hours + branch, three equal cards) ---------- */
.gr-about2__grid {
  display: flex;
  gap: 20px;
  align-items: stretch;
}
.gr-about2__main { flex: 1 1 42%; min-width: 0; }
.gr-about2__hours { flex: 0 0 26%; min-width: 0; }
.gr-about2__branch { flex: 0 0 31.5%; min-width: 0; }
.gr-about2__grid--cols-2 .gr-about2__hours,
.gr-about2__grid--cols-2 .gr-about2__branch { flex-basis: 41%; }
/* while the text card is expanded, neighbours keep their collapsed height
   (inline height set from JS) instead of stretching along */
.gr-about2__hours.is-locked,
.gr-about2__branch.is-locked { align-self: flex-start; }
.gr-about2__main {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: var(--gr-radius);
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.gr-about2__title { font-size: 24px; font-weight: 700; margin: 0 0 6px; position: relative; padding-bottom: 12px; }
.gr-about2__title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 56px; height: 3px; background: var(--gr-accent); border-radius: 2px; }
.gr-about2__subtitle { color: var(--gr-muted); margin-bottom: 12px; }
.gr-about2__text { color: var(--gr-text); }

/* long text: clamp with a fade + "show more" toggle (smooth roll-down) */
.gr-about2__textwrap {
  position: relative;
  overflow: hidden;
  transition: max-height .45s ease;
}
.gr-about2__textwrap.is-clamped { max-height: 300px; }
.gr-about2__textwrap.is-clamped::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 70px;
  background: linear-gradient(rgba(255, 255, 255, 0), #fff);
}
.gr-about2__more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--gr-accent);
  cursor: pointer;
}
.gr-about2__more:hover { color: var(--gr-accent-dark); }
.gr-about2__more .fas { font-size: 12px; transition: transform .3s; }
.gr-about2__more.is-open .fas { transform: rotate(180deg); }
.gr-about2__more:focus { outline: none; }
.gr-about2__more:focus-visible { outline: 2px solid var(--gr-accent); outline-offset: 2px; }

/* opening hours card */
.gr-about2__hours {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: var(--gr-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.gr-about2__hours-title { font-size: 16px; font-weight: 700; margin-bottom: 12px; white-space: nowrap; }
.gr-about2__hours-title .fas { color: var(--gr-accent); margin-right: 7px; }
.gr-about2__hours-row span { white-space: nowrap; }
.gr-open-pill { align-self: flex-start; margin-bottom: 14px; }

/* CTA pinned to the card bottom */
.gr-about2__hours-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gr-accent-soft), #fff8f0);
  border: 1px dashed rgba(245, 129, 30, .45);
  color: var(--gr-text);
  white-space: nowrap;
  transition: background .2s, border-color .2s, box-shadow .2s, transform .2s;
}
.gr-about2__hours-cta-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gr-accent);
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(245, 129, 30, .35);
}
.gr-about2__hours-cta-text { display: flex; flex-direction: column; min-width: 0; }
.gr-about2__hours-cta-text small { font-size: 12.5px; color: var(--gr-muted); }
.gr-about2__hours-cta-text strong { font-size: 14.5px; font-weight: 700; color: var(--gr-accent-dark); transition: color .2s; }
.gr-about2__hours-cta:hover {
  border-style: solid;
  border-color: var(--gr-accent);
  box-shadow: 0 8px 20px rgba(245, 129, 30, .2);
  transform: translateY(-2px);
  color: var(--gr-text);
}
.gr-about2__hours-cta:hover .gr-about2__hours-cta-icon .fas { animation: gr-envelope .5s ease; }
@keyframes gr-envelope {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-12deg) scale(1.08); }
  60% { transform: rotate(10deg); }
}
.gr-about2__hours-list { margin-bottom: 16px; }
.gr-open-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 600;
  border-radius: 999px; padding: 5px 12px;
  background: #f2f4f6; color: var(--gr-text);
}
.gr-open-pill__dot { width: 8px; height: 8px; border-radius: 50%; background: #9aa1a7; }
.gr-open-pill--open { background: #e8f6ec; color: #1e7c37; }
.gr-open-pill--open .gr-open-pill__dot { background: #2cb34a; }
.gr-open-pill--later { background: var(--gr-accent-soft); color: var(--gr-accent-dark); }
.gr-open-pill--later .gr-open-pill__dot { background: var(--gr-accent); }
.gr-open-pill--closed { background: #fdecea; color: #b02a37; }
.gr-open-pill--closed .gr-open-pill__dot { background: #d9534f; }
.gr-open-pill--text { background: var(--gr-accent-soft); color: var(--gr-accent-dark); }
.gr-open-pill--text .gr-open-pill__dot { background: var(--gr-accent); }
.gr-about2__hours-list { list-style: none; margin: 0; padding: 0; }
.gr-about2__hours-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  font-size: 14px; padding: 8px 10px; border-radius: 8px;
}
.gr-about2__hours-row + .gr-about2__hours-row { border-top: 1px solid #f3f4f6; }
.gr-about2__hours-row.is-today {
  background: var(--gr-accent-soft);
  font-weight: 700;
  border-top-color: transparent;
}
.gr-about2__hours-row.is-today + .gr-about2__hours-row { border-top-color: transparent; }
.gr-about2__hours-val { text-align: right; white-space: nowrap; }
.gr-about2__hours-val.is-closed { color: var(--gr-muted); }

/* branch card */
.gr-about2__branch {
  background: var(--gr-dark);
  color: #fff;
  border-radius: var(--gr-radius);
  overflow: hidden;
  box-shadow: var(--gr-shadow);
}
.gr-about2__photo { aspect-ratio: 16 / 9; position: relative; background: #31373d; }
.gr-about2__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gr-about2__photo-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .28);
}
.gr-about2__photo-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 44px; color: rgba(255, 255, 255, .22);
  background-image: radial-gradient(rgba(255, 255, 255, .07) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}
.gr-about2__branch-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 12px; }
.gr-about2__branch-name { font-size: 17px; font-weight: 700; margin-bottom: 2px; }
.gr-about2__row {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255, 255, 255, .9);
  line-height: 1.4;
}
.gr-about2__row span:last-child { display: flex; flex-direction: column; min-width: 0; }
.gr-about2__row small { color: rgba(255, 255, 255, .55); font-size: 12px; }
.gr-about2__row-icon {
  flex: 0 0 34px; width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  color: var(--gr-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  transition: background .15s;
}
.gr-about2__row--link { color: #fff; }
.gr-about2__row--link:hover { color: var(--gr-accent); }
.gr-about2__row--link:hover .gr-about2__row-icon { background: var(--gr-accent); color: #fff; }
@media (max-width: 991px) {
  /* text card full width, hours + branch side by side below */
  .gr-about2__grid { flex-wrap: wrap; }
  .gr-about2__main { flex: 1 1 100%; }
  .gr-about2__hours,
  .gr-about2__grid--cols-2 .gr-about2__hours,
  .gr-about2__grid--cols-2 .gr-about2__branch { flex: 1 1 calc(50% - 10px); }
  .gr-about2__branch { flex: 1 1 calc(50% - 10px); }
}
@media (max-width: 700px) {
  .gr-about2__hours,
  .gr-about2__branch,
  .gr-about2__grid--cols-2 .gr-about2__hours,
  .gr-about2__grid--cols-2 .gr-about2__branch { flex: 1 1 100%; }
  .gr-about2__main { padding: 22px 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .gr-about2__textwrap { transition: none; }
  .gr-about2__hours-cta:hover .gr-about2__hours-cta-icon .fas { animation: none; }
}

/* ---------- posts ---------- */
.gr-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gr-post-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid #ebebeb; border-radius: var(--gr-radius); overflow: hidden;
  color: var(--gr-text);
  transition: box-shadow .2s, transform .2s;
}
.gr-post-card:hover { box-shadow: var(--gr-shadow-hover); transform: translateY(-3px); color: var(--gr-text); }
.gr-post-card__media { aspect-ratio: 16 / 9; overflow: hidden; }
.gr-post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gr-post-card:hover .gr-post-card__media img { transform: scale(1.04); }
.gr-post-card__body { padding: 16px 18px 18px; }
.gr-post-card__date { font-size: 12px; color: var(--gr-muted); margin-bottom: 6px; }
.gr-post-card__name { font-size: 16px; font-weight: 700; margin: 0 0 8px; line-height: 1.4; }
.gr-post-card:hover .gr-post-card__name { color: var(--gr-accent); }
.gr-post-card__excerpt { font-size: 13px; color: var(--gr-muted); }

/* ---------- brands ---------- */
.gr-brands { padding-bottom: 44px; }
.gr-brands__item img {
  filter: grayscale(1); opacity: .6; transition: filter .2s, opacity .2s;
  max-height: 56px; width: auto; height: auto; max-width: 100%; margin: 0 auto;
}
.gr-brands__item:hover img { filter: none; opacity: 1; }

/* ---------- header polish ---------- */
/* Mobile header: white panel so the dark logo stays readable */
.mobile-header__panel {
  background: #fff;
  color: var(--gr-text);
  box-shadow: 0 1px 0 #ebebeb, 0 2px 12px rgba(38, 43, 48, .06);
}
.mobile-header__menu-button { fill: var(--gr-text); }
.mobile-header__menu-button:focus,
.mobile-header__menu-button:hover { background: #f2f2f2; fill: var(--gr-accent); }
.mobile-header .indicator__button { color: var(--gr-text); fill: var(--gr-text); }
.mobile-header .indicator__button:hover { fill: var(--gr-accent); }

.nav-links__item--active .nav-links__item-link .nav-links__item-body { color: #fff; }

/* ---------- header search ---------- */
.search--location--header .search__input { padding: 0 18px; }
/* Pill background lives on the form; .search__border stays a transparent overlay ring */
.search--location--header .search__form {
  background: #f3f4f6;
  border-radius: 12px;
  transition: background .15s;
}
.search--location--header .search__form:hover { background: #edeff2; }
.search--location--header .search__form:focus-within { background: #fff; }
.search--location--header .search__input ~ .search__border,
.search--location--header .search__input:hover ~ .search__border {
  background: transparent;
  box-shadow: none;
  border-radius: 12px;
}
.search--location--header .search__input:focus ~ .search__border {
  background: transparent;
  box-shadow: 0 0 0 2px var(--gr-accent) inset, 0 8px 24px rgba(245, 129, 30, .14);
}
/* Submit turns into a compact accent button */
.search--location--header .search__button--type--submit,
.search--location--header .search__input:hover ~ .search__button--type--submit,
.search--location--header .search__input:focus ~ .search__button--type--submit {
  position: relative;
  align-self: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  margin-right: 4px;
  border-radius: 9px;
  background: var(--gr-accent);
  fill: #fff;
  transition: background .15s, fill .15s;
}
.search--location--header .search__button--type--submit:hover,
.search--location--header .search__input:hover ~ .search__button--type--submit:hover,
.search--location--header .search__input:focus ~ .search__button--type--submit:hover {
  background: var(--gr-accent-dark);
  fill: #fff;
}

/* FA icons in search/indicator buttons (template styles `fill`, FA needs `color`) */
.search__button .fas { font-size: 17px; }
.indicator__area .fas { font-size: 18px; }
.search--location--header .search__button--type--submit .fas { color: #fff; font-size: 15px; }
.search--location--mobile-header .search__button .fas { color: rgba(0, 0, 0, .4); transition: color .2s; }
.search--location--mobile-header .search__button:hover .fas,
.search--location--mobile-header .search__button:focus .fas { color: #3d464d; }

/* Loading spinner (both header + mobile search) */
.search .search__button--type--submit svg,
.search .search__button--type--submit .fas { transition: opacity .15s; }
.search--loading .search__button--type--submit { position: relative; }
.search--loading .search__button--type--submit svg,
.search--loading .search__button--type--submit .fas { opacity: 0; }
.search--loading .search__button--type--submit::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(245, 129, 30, .25);
  border-top-color: var(--gr-accent);
  border-radius: 50%;
  animation: gr-spin .6s linear infinite;
}
.search--location--header.search--loading .search__button--type--submit::after {
  border-color: rgba(255, 255, 255, .35);
  border-top-color: #fff;
}
@keyframes gr-spin { to { transform: rotate(360deg); } }

/* Suggestions dropdown */
.search--location--header .search__suggestions {
  border-radius: 14px;
  border: 1px solid #eef0f2;
  box-shadow: 0 18px 44px rgba(38, 43, 48, .16);
  padding-top: 64px;
  padding-bottom: 8px;
}
.suggestions__item {
  margin: 0 8px;
  padding: 9px 10px;
  border-radius: 10px;
  transition: background .12s;
}
.suggestions__item:hover { background: #f5f6f8; }
.suggestions__item-name { font-weight: 600; }
.suggestions__item:hover .suggestions__item-name { color: var(--gr-accent); }
.suggestions__item-meta { color: var(--gr-muted); }
.gr-suggest-footer {
  margin: 6px 8px 0;
  padding: 10px 10px 2px;
  border-top: 1px solid #f0f1f3;
}
.gr-suggest-footer a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gr-accent);
}
.gr-suggest-footer a:hover { color: var(--gr-accent-dark); }
.gr-suggest-footer .fas { font-size: 12px; transition: transform .15s; }
.gr-suggest-footer a:hover .fas { transform: translateX(3px); }
.gr-suggest-empty {
  padding: 20px 18px 12px;
  text-align: center;
  color: var(--gr-muted);
}
.gr-suggest-empty .fas {
  display: block;
  margin: 0 auto 10px;
  font-size: 22px;
  color: #cfd3d8;
}
.gr-suggest-empty__title { font-weight: 600; color: var(--gr-text); font-size: 15px; }
.gr-suggest-empty__hint { font-size: 13px; margin-top: 3px; }

/* ---------- header phone ---------- */
.site-header__phone,
[dir=ltr] .site-header__phone {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 24px;
  padding: 8px 16px 8px 10px;
  text-align: left;
  border: 1px solid #ebebeb;
  border-radius: 14px;
  background: #fff;
  color: var(--gr-text);
  line-height: 1.2;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.site-header__phone:hover {
  border-color: var(--gr-accent);
  box-shadow: var(--gr-shadow);
  transform: translateY(-1px);
  color: var(--gr-text);
  text-decoration: none;
}
.site-header__phone-icon {
  position: relative;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gr-accent-soft);
  color: var(--gr-accent);
  border-radius: 11px;
  font-size: 16px;
  transition: background .2s, color .2s;
}
/* Availability dot — only while the branch is actually open */
.site-header__phone--open .site-header__phone-icon::after {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #2ecc71;
  border: 2px solid #fff;
}
.site-header__phone:hover .site-header__phone-icon { background: var(--gr-accent); color: #fff; }
.site-header__phone:hover .site-header__phone-icon .fas { animation: gr-ring .5s ease; }
@keyframes gr-ring {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-13deg); }
  55% { transform: rotate(10deg); }
  80% { transform: rotate(-5deg); }
}
.site-header__phone-title {
  display: block;
  margin-bottom: 3px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--gr-muted);
}
.site-header__phone-number {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--gr-dark);
  transition: color .2s;
}
.site-header__phone:hover .site-header__phone-number { color: var(--gr-accent); }
/* ---------- mobile menu drawer ---------- */
.gr-mm .mobilemenu__backdrop { background: rgba(20, 23, 26, .6); }
.gr-mm .mobilemenu__body,
.gr-mm__body {
  width: 340px;
  max-width: calc(100vw - 44px);
  display: flex;
  flex-direction: column;
  border-radius: 0 18px 18px 0;
  overflow: hidden;
}
.gr-mm__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid #eef0f2;
  flex: 0 0 auto;
}
.gr-mm__logo img { height: 30px; width: auto; display: block; }
.gr-mm__close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f2f4f6;
  color: var(--gr-text);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.gr-mm__close:hover { background: var(--gr-accent); color: #fff; }
.gr-mm__close:focus { outline: none; }
.gr-mm__scroll { flex: 1 1 auto; min-height: 0; overflow-y: auto; padding: 16px 14px 20px; }
.gr-mm__status { margin: 0 4px 12px; }
.gr-mm__status .gr-open-pill { margin-bottom: 0; }

/* nav links */
.gr-mm__nav { display: flex; flex-direction: column; gap: 2px; }
.gr-mm__link {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 10px;
  border: 0;
  border-radius: 12px;
  background: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--gr-text);
  text-align: left;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.gr-mm__link:hover { background: #f7f8f9; color: var(--gr-text); }
.gr-mm__link.is-active { background: var(--gr-accent-soft); color: var(--gr-accent-dark); }
.gr-mm__link.is-active .gr-mm__link-icon { background: var(--gr-accent); color: #fff; }
.gr-mm__link:focus { outline: none; }
.gr-mm__link-icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--gr-accent-soft);
  color: var(--gr-accent);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
}
.gr-mm__link-label { flex: 1 1 auto; min-width: 0; }
.gr-mm__chevron { font-size: 11px; color: var(--gr-accent); transition: transform .2s; }
.gr-mm__link--toggle.is-open .gr-mm__chevron { transform: rotate(180deg); }
.gr-mm [data-mm-panel] { display: none; }
.gr-mm__sub { padding: 2px 6px 8px 60px; }
.gr-mm__sub a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 9px;
  font-size: 14px;
  color: var(--gr-muted);
  transition: background .15s, color .15s;
}
.gr-mm__sub a:hover { background: #f7f8f9; color: var(--gr-accent-dark); }
.gr-mm__count {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gr-muted);
  background: #f2f4f6;
  border-radius: 999px;
  padding: 1px 8px;
}

/* opening hours */
.gr-mm__hours-state { display: block; font-size: 12px; font-weight: 600; margin-top: 1px; }
.gr-mm__hours-state.is-open { color: #1e7c37; }
.gr-mm__hours-state.is-later { color: var(--gr-accent-dark); }
.gr-mm__hours-state.is-closed { color: #b02a37; }
.gr-mm__hours { padding: 4px 4px 8px; }
.gr-mm__hours-day {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 9px;
  background: #f8f9fa;
  margin-bottom: 5px;
  font-size: 13px;
}
.gr-mm__hours-day:last-child { margin-bottom: 0; }
.gr-mm__hours-day.is-today { background: var(--gr-accent-soft); box-shadow: inset 0 0 0 1px rgba(245, 129, 30, .35); }
.gr-mm__hours-name { font-weight: 600; color: var(--gr-muted); }
.gr-mm__hours-day.is-today .gr-mm__hours-name { color: var(--gr-accent-dark); }
.gr-mm__hours-val { font-weight: 600; }
.gr-mm__hours-val.is-closed { color: var(--gr-muted); font-weight: 400; }

/* CTA buttons */
.gr-mm__cta { display: flex; flex-direction: column; gap: 8px; margin: 16px 4px 0; }
.gr-mm__cta .gr-btn { justify-content: center; }

/* footer of the drawer */
.gr-mm__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 4px 0;
}
.gr-mm__social { display: flex; gap: 8px; }
.gr-mm__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f2f4f6;
  color: var(--gr-text);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
}
.gr-mm__social a:hover { background: var(--gr-accent); color: #fff; }
.gr-mm__login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gr-muted);
}
.gr-mm__login:hover { color: var(--gr-accent-dark); }
.gr-mm__login .fas { color: var(--gr-accent); font-size: 12px; }

/* ---------- footer ---------- */
.gr-footer {
  position: relative;
  background: var(--gr-dark);
  color: rgba(255, 255, 255, .85);
  padding-top: 56px;
}
.gr-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .045) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
}
.gr-footer .container { position: relative; }
.gr-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
}
.gr-footer__logo {
  display: inline-flex;
  background: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  margin-bottom: 16px;
}
.gr-footer__logo img { height: 34px; width: auto; display: block; }
.gr-footer__about { font-size: 14px; line-height: 1.65; color: rgba(255, 255, 255, .75); margin: 0 0 18px; }
.gr-footer__contacts { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.gr-footer__contacts li { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.gr-footer__contacts a { color: rgba(255, 255, 255, .85); }
.gr-footer__contacts a:hover { color: var(--gr-accent); }
.gr-footer__contact-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  color: var(--gr-accent);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gr-footer__title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 6px 0 16px;
  position: relative;
  padding-bottom: 10px;
}
.gr-footer__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: var(--gr-accent);
}
.gr-footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.gr-footer__links a { color: rgba(255, 255, 255, .75); font-size: 14px; transition: color .15s, padding-left .15s; }
.gr-footer__links a:hover { color: var(--gr-accent); padding-left: 4px; }
.gr-footer__news-text { font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, .75); margin: 0 0 14px; }
.gr-footer__news-form {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  padding: 5px;
  transition: border-color .15s, box-shadow .15s;
}
.gr-footer__news-form:focus-within { border-color: var(--gr-accent); box-shadow: 0 0 0 3px rgba(245, 129, 30, .18); }
.gr-footer__news-form:has(input.is-invalid) { border-color: #d9534f; }
.gr-footer__news-form input {
  flex: 1 1 auto;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: none;
  color: #fff;
  font-size: 14px;
  padding: 8px 10px 8px 12px;
}
.gr-footer__news-form input::placeholder { color: rgba(255, 255, 255, .45); }
.gr-footer__news-form button {
  position: relative;
  flex: 0 0 44px;
  width: 44px;
  height: 42px;
  border: 0;
  border-radius: 9px;
  background: var(--gr-accent);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, transform .15s;
}
.gr-footer__news-form button:hover { background: var(--gr-accent-dark); }
.gr-footer__news-form button:focus { outline: none; }
.gr-footer__news-form button:disabled { opacity: .85; pointer-events: none; }
.gr-footer__news-form button.is-loading [data-role=label] { opacity: 0; }
.gr-footer__news-form button.is-loading::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: gr-spin .6s linear infinite;
}
.gr-footer__social-title { font-size: 13px; font-weight: 600; color: rgba(255, 255, 255, .6); margin: 18px 0 10px; }
.gr-footer__social { display: flex; gap: 8px; flex-wrap: wrap; }
.gr-footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, transform .15s;
}
.gr-footer__social a:hover { background: var(--gr-accent); color: #fff; transform: translateY(-2px); }
.gr-footer__bottom { position: relative; border-top: 1px solid rgba(255, 255, 255, .1); padding: 18px 0; }
.gr-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .65);
  text-align: center;
}
.gr-footer__powered { display: inline-flex; align-items: center; gap: 5px; }
.gr-footer__powered .fa-heart { color: var(--gr-accent); font-size: 12px; animation: gr-heartbeat 1.6s ease-in-out infinite; }
.gr-footer__powered a { color: rgba(255, 255, 255, .85); font-weight: 600; }
.gr-footer__powered a:hover { color: var(--gr-accent); }
@keyframes gr-heartbeat {
  0%, 40%, 100% { transform: scale(1); }
  10% { transform: scale(1.25); }
  20% { transform: scale(1); }
  30% { transform: scale(1.15); }
}
@media (prefers-reduced-motion: reduce) {
  .gr-footer__powered .fa-heart { animation: none; }
}
@media (max-width: 1199px) {
  .gr-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 575px) {
  .gr-footer { padding-top: 44px; }
  .gr-footer__grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
}

/* ---------- listing ---------- */
.page-header__title h1 { font-size: 28px; font-weight: 700; margin: 6px 0 18px; }
.gr-side-card {
  background: #fff; border: 1px solid #ebebeb; border-radius: var(--gr-radius);
  padding: 18px 20px; margin-bottom: 16px;
}
.gr-side-card--accent { border-color: var(--gr-accent); background: var(--gr-accent-soft); }
.gr-side-card__title { font-weight: 700; font-size: 16px; margin-bottom: 12px; }
.gr-side-cats { list-style: none; margin: 0; padding: 0; }
.gr-side-cats li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 0; border-bottom: 1px solid #f0f0f0;
}
.gr-side-cats li:last-child { border-bottom: 0; }
.gr-side-cats a { color: var(--gr-text); }
.gr-side-cats a:hover { color: var(--gr-accent); }
.gr-side-cats li.is-active a { color: var(--gr-accent); font-weight: 700; }
.gr-side-cats__count {
  font-size: 12px; color: var(--gr-muted);
  background: #f2f2f2; border-radius: 999px; padding: 1px 8px;
}
.gr-side-phone { font-size: 18px; font-weight: 700; color: var(--gr-accent-darker); white-space: nowrap; }
.gr-side-phone:hover { color: var(--gr-accent-dark); }

/* categories card: collapsible on mobile */
.gr-side-card__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--gr-text);
  cursor: pointer;
  text-align: left;
}
.gr-side-card__toggle:focus { outline: none; }
.gr-side-card__toggle:focus-visible { outline: 2px solid var(--gr-accent); outline-offset: 4px; border-radius: 4px; }
.gr-side-card__toggle-label { display: flex; align-items: center; gap: 9px; min-width: 0; }
.gr-side-card__toggle-label > .fas { color: var(--gr-accent); font-size: 14px; }
.gr-side-card__toggle-active {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gr-accent-dark);
  background: var(--gr-accent-soft);
  border-radius: 999px;
  padding: 2px 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gr-side-card__toggle-chevron { font-size: 12px; color: var(--gr-accent); transition: transform .2s; }
.gr-side-card--cats.is-open .gr-side-card__toggle-chevron { transform: rotate(180deg); }
@media (max-width: 991px) {
  .gr-side-card--cats .gr-side-cats { display: none; margin-top: 12px; }
  .gr-plist__extras { margin-top: 24px; }
}
@media (min-width: 992px) {
  /* desktop list always visible regardless of inline styles left by the mobile toggle */
  .gr-side-card--cats .gr-side-cats { display: block !important; }
}

/* sidebar CTA to the contact page */
.gr-side-cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--gr-radius);
  padding: 22px 20px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--gr-accent), var(--gr-accent-dark));
  color: #fff;
}
.gr-side-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .14) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  pointer-events: none;
}
.gr-side-cta > * { position: relative; }
.gr-side-cta__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}
.gr-side-cta__title { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.gr-side-cta__text { font-size: 13.5px; line-height: 1.55; color: rgba(255, 255, 255, .92); margin: 0 0 14px; }
.gr-side-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--gr-accent-dark);
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  padding: 10px 16px;
  transition: box-shadow .15s, transform .15s;
}
.gr-side-cta__btn:hover { color: var(--gr-accent-dark); box-shadow: 0 8px 18px rgba(0, 0, 0, .18); transform: translateY(-1px); }
.gr-side-cta__btn .fas { font-size: 12px; transition: transform .15s; }
.gr-side-cta__btn:hover .fas { transform: translateX(3px); }
.gr-listing-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: #fff; border: 1px solid #ebebeb; border-radius: var(--gr-radius);
  padding: 10px 16px; margin-bottom: 16px;
}
.gr-listing-bar__info { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; min-width: 0; }
.gr-listing-bar__sort { display: flex; align-items: center; gap: 10px; }

/* product count in the listing bar */
.gr-count-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gr-text);
  white-space: nowrap;
}
.gr-count-pill .fas { color: var(--gr-accent); font-size: 13px; }
.gr-count-pill strong { color: var(--gr-accent-dark); }
.gr-listing-bar__for { font-size: 13.5px; color: var(--gr-muted); }

/* active search chip in the listing bar */
.gr-search-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 280px;
  background: var(--gr-accent-soft);
  color: var(--gr-accent-dark);
  border: 1px solid rgba(245, 129, 30, .35);
  border-radius: 999px;
  padding: 4px 5px 4px 12px;
  font-size: 13px;
  font-weight: 600;
}
.gr-search-chip > .fa-search { font-size: 11px; color: var(--gr-accent); }
.gr-search-chip__text { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.gr-search-chip__close {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  color: var(--gr-accent-dark);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s, transform .15s;
}
.gr-search-chip__close:hover { background: var(--gr-accent); color: #fff; transform: rotate(90deg); }
/* mobile: stack the listing bar — info row (with chip) above, sort row below */
@media (max-width: 767px) {
  .gr-listing-bar { flex-wrap: wrap; gap: 10px; padding: 12px 16px; }
  .gr-listing-bar__info { flex: 1 1 100%; }
  .gr-search-chip { max-width: 100%; }
  .gr-listing-bar__sort { width: 100%; justify-content: space-between; }
  /* active search: results + query and sorting as two separate boxes */
  .gr-listing-bar--search { display: block; background: none; border: 0; padding: 0; }
  .gr-listing-bar--search .gr-listing-bar__info,
  .gr-listing-bar--search .gr-listing-bar__sort {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: var(--gr-radius);
    padding: 12px 16px;
  }
  .gr-listing-bar--search .gr-listing-bar__info { margin-bottom: 10px; }
}

/* custom sort select */
.gr-sort__label { font-size: 13px; font-weight: 600; color: var(--gr-muted); margin: 0; white-space: nowrap; }
.gr-sort__label .fas { font-size: 12px; color: var(--gr-accent); margin-right: 2px; }
.gr-sort { position: relative; display: inline-flex; }
.gr-sort__select {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #e3e6ea;
  border-radius: 10px;
  background: #fff;
  color: var(--gr-text);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 36px 8px 14px;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
}
.gr-sort__select:hover { border-color: var(--gr-accent); }
.gr-sort__select:focus {
  outline: none;
  border-color: var(--gr-accent);
  box-shadow: 0 0 0 3px rgba(245, 129, 30, .14);
}
.gr-sort__chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: var(--gr-accent);
  pointer-events: none;
}

/* JS-enhanced dropdown replaces the native select */
.gr-sort--custom .gr-sort__select,
.gr-sort--custom > .gr-sort__chevron { display: none; }
.gr-sort__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e3e6ea;
  border-radius: 10px;
  background: #fff;
  color: var(--gr-text);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 14px;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
}
.gr-sort__btn:hover { border-color: var(--gr-accent); }
.gr-sort__btn:focus { outline: none; }
.gr-sort__btn:focus-visible {
  outline: none;
  border-color: var(--gr-accent);
  box-shadow: 0 0 0 3px rgba(245, 129, 30, .14);
}
.gr-sort__btn-chevron { font-size: 11px; color: var(--gr-accent); transition: transform .18s; }
.gr-sort.is-open .gr-sort__btn { border-color: var(--gr-accent); box-shadow: 0 0 0 3px rgba(245, 129, 30, .14); }
.gr-sort.is-open .gr-sort__btn-chevron { transform: rotate(180deg); }
.gr-sort__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 60;
  min-width: 100%;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .15s, transform .15s, visibility .15s;
}
.gr-sort.is-open .gr-sort__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.gr-sort__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: background .12s, color .12s;
}
.gr-sort__option:hover { background: var(--gr-accent-soft); color: var(--gr-accent-dark); }
.gr-sort__option .fas { font-size: 11px; color: var(--gr-accent); opacity: 0; }
.gr-sort__option.is-selected { font-weight: 700; color: var(--gr-accent-dark); }
.gr-sort__option.is-selected .fas { opacity: 1; }
.gr-empty {
  text-align: center; padding: 48px 16px; color: var(--gr-muted);
  background: #fff; border: 1px dashed #ddd; border-radius: var(--gr-radius);
}
.gr-empty .gr-icon { filter: grayscale(1); opacity: .45; margin-bottom: 10px; }

/* ---------- product detail ---------- */
.gr-product__gallery-main {
  display: block; position: relative; border: 1px solid #ebebeb; border-radius: var(--gr-radius); overflow: hidden;
  background: #f7f8f9;
}
.gr-product__avail {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .14);
}
.gr-product__gallery-main img { width: 100%; display: block; aspect-ratio: 4 / 3; object-fit: cover; }
.gr-product__gallery-thumbs { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.gr-product__gallery-thumbs a {
  width: 84px; height: 84px; border: 1px solid #ebebeb; border-radius: 8px; overflow: hidden; display: block;
  transition: border-color .15s, box-shadow .15s;
}
.gr-product__gallery-thumbs a:hover { border-color: var(--gr-accent); box-shadow: 0 0 0 3px rgba(245, 129, 30, .14); }
.gr-product__gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s; }
.gr-product__gallery-thumbs a:hover img { transform: scale(1.06); }
.gr-product__icon-panel {
  display: flex; align-items: center; justify-content: center;
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--gr-accent-soft); border-radius: var(--gr-radius);
}
.gr-product__category { text-transform: uppercase; letter-spacing: .5px; font-size: 12px; color: var(--gr-muted); margin-bottom: 4px; }
.gr-product__name { font-size: 28px; font-weight: 700; margin: 0 0 12px; }
.gr-product__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.gr-pill {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid #ebebeb; border-radius: 999px; padding: 4px 12px; font-size: 13px; color: var(--gr-text);
  background: #fff;
}
.gr-pill--success { border-color: #b7e0c0; background: #ecf8ef; color: #1e7e34; }
.gr-pill--muted { background: #f2f2f2; color: var(--gr-muted); }
.gr-product__short { color: var(--gr-muted); margin-bottom: 16px; }
.gr-price-box {
  background: #fff; border: 1px solid #ebebeb; border-radius: var(--gr-radius);
  padding: 18px 20px; margin-bottom: 16px;
}
.gr-price-box__title { font-weight: 700; margin-bottom: 10px; }
.gr-price-box__title .fas { color: var(--gr-accent); font-size: 14px; margin-right: 4px; }
.gr-price-table { width: 100%; margin-bottom: 14px; }
.gr-price-table td { padding: 7px 0; border-bottom: 1px solid #f0f0f0; }
.gr-price-table tr:last-child td { border-bottom: 0; }
.gr-price-table td.text-right { text-align: right; }
.gr-price-table strong { color: var(--gr-accent-darker); }
.gr-calc { border-top: 2px solid var(--gr-accent-soft); padding-top: 14px; }
.gr-calc__label { font-size: 13px; font-weight: 600; color: var(--gr-muted); margin-bottom: 6px; display: block; }
.gr-calc__row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.gr-calc__input {
  display: flex; align-items: stretch;
  border: 1px solid #e3e6ea; border-radius: 10px; overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.gr-calc__input:focus-within { border-color: var(--gr-accent); box-shadow: 0 0 0 3px rgba(245, 129, 30, .14); }
.gr-calc__input input {
  width: 64px; text-align: center; border: 0; font-weight: 700; font-size: 16px;
  color: var(--gr-text);
  -moz-appearance: textfield;
}
.gr-calc__input input:focus { outline: none; }
.gr-calc__input input::-webkit-outer-spin-button,
.gr-calc__input input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.gr-calc__btn {
  width: 40px; height: 42px; border: 0; background: #f7f8f9;
  font-size: 18px; font-weight: 700; color: var(--gr-text);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.gr-calc__btn:hover { background: var(--gr-accent); color: #fff; }
.gr-calc__btn:focus { outline: none; }
.gr-calc__btn:focus-visible { background: var(--gr-accent); color: #fff; }
.gr-calc__result { margin-left: auto; text-align: right; }
.gr-calc__rate { font-size: 13px; color: var(--gr-muted); }
.gr-calc__total { font-size: 18px; }
.gr-calc__total strong { color: var(--gr-accent-darker); }
.gr-product__cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.gr-product__cta .gr-btn { flex: 1 1 0; justify-content: center; white-space: nowrap; }

/* accent buttons (product CTA) */
.gr-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 10px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  transition: background .15s, color .15s, border-color .15s, box-shadow .15s, transform .15s;
}
.gr-btn .fas { font-size: 13px; }
.gr-btn--solid { background: var(--gr-accent); color: #fff; }
.gr-btn--solid:hover { background: var(--gr-accent-dark); color: #fff; box-shadow: 0 8px 20px rgba(245, 129, 30, .3); transform: translateY(-1px); }
.gr-btn--ghost { background: #fff; color: var(--gr-text); border: 1px solid #e3e6ea; }
.gr-btn--ghost:hover { border-color: var(--gr-accent); color: var(--gr-accent-dark); transform: translateY(-1px); }
.gr-btn--ghost .fas { color: var(--gr-accent); }
.gr-product__description { margin-top: 36px; }
.gr-product__description .gr-section__title { margin-bottom: 14px; }
.gr-product__inquiry { margin-top: 36px; scroll-margin-top: 90px; }

/* inquiry card: accent side panel + form panel */
.gr-inquiry-card {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: var(--gr-radius);
  overflow: hidden;
}
.gr-inquiry-card__side {
  position: relative;
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
  background: linear-gradient(160deg, var(--gr-accent), var(--gr-accent-dark));
  color: #fff;
}
.gr-inquiry-card__side::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .14) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  pointer-events: none;
}
.gr-inquiry-card__side > * { position: relative; }
.gr-inquiry-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.gr-inquiry-card__title { font-size: 21px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.gr-inquiry-card__text { color: rgba(255, 255, 255, .92); font-size: 14px; line-height: 1.6; margin: 0 0 18px; }
.gr-inquiry-card__list { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.gr-inquiry-card__list li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600; }
.gr-inquiry-card__list .fas {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gr-inquiry-card__phone {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
  color: var(--gr-text);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
  transition: transform .15s, box-shadow .15s;
}
.gr-inquiry-card__phone:hover { color: var(--gr-text); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(0, 0, 0, .16); }
.gr-inquiry-card__phone-icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gr-accent);
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gr-inquiry-card__phone small { display: block; font-size: 12px; color: var(--gr-muted); }
.gr-inquiry-card__phone strong { font-size: 16px; color: var(--gr-accent-darker); white-space: nowrap; }
.gr-inquiry-card__main { flex: 1 1 auto; min-width: 0; padding: 28px 30px; }
@media (max-width: 991px) {
  .gr-inquiry-card { flex-direction: column; }
  .gr-inquiry-card__side { flex: 1 1 auto; }
  .gr-inquiry-card__phone { align-self: stretch; margin-top: 6px; }
}
/* reuse contact-form styles inside other cards */
.gr-cform.gr-cform--bare { background: transparent; border: 0; border-radius: 0; padding: 0; }
.gr-hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

/* ---------- kontakt page ---------- */
.gr-page-subtitle { color: var(--gr-muted); font-size: 15px; margin: 6px 0 0; }
.gr-kontakt {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.gr-kontakt__aside {
  flex: 0 0 380px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gr-kontakt__form { flex: 1 1 auto; min-width: 0; }

/* modern info box */
.gr-infobox {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--gr-radius);
  background: linear-gradient(135deg, var(--gr-accent-soft), #fff8f0);
  border: 1px dashed rgba(245, 129, 30, .45);
}
.gr-infobox__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gr-accent);
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(245, 129, 30, .3);
}
.gr-infobox__title { font-weight: 700; font-size: 14.5px; margin-bottom: 4px; }
.gr-infobox__text { font-size: 13.5px; line-height: 1.55; color: var(--gr-text); margin: 0; }

/* contact form card */
.gr-cform {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: var(--gr-radius);
  padding: 28px 30px;
}
.gr-cform__head { margin-bottom: 20px; }
.gr-cform__title { font-size: 22px; font-weight: 700; margin: 0 0 4px; position: relative; padding-bottom: 12px; }
.gr-cform__title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 48px; height: 3px; background: var(--gr-accent); border-radius: 2px; }
.gr-cform__subtitle { color: var(--gr-muted); font-size: 14px; margin: 8px 0 0; }
.gr-cform__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.gr-cform__field--full { grid-column: 1 / -1; }
.gr-cform__field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gr-muted);
  margin-bottom: 6px;
}
.gr-cform__field label span[aria-hidden] { color: var(--gr-accent); }
.gr-cform .form-control {
  width: 100%;
  border: 1px solid #e3e6ea;
  border-radius: 10px;
  padding: 10px 14px;
  height: auto;
  font-size: 14px;
  color: var(--gr-text);
  transition: border-color .15s, box-shadow .15s;
}
.gr-cform .form-control::placeholder { color: #b7bec5; }
.gr-cform .form-control:focus {
  outline: none;
  border-color: var(--gr-accent);
  box-shadow: 0 0 0 3px rgba(245, 129, 30, .14);
}
.gr-cform .form-control.is-invalid {
  border-color: #d9534f;
  background-image: none;
}
.gr-cform .form-control.is-invalid:focus { box-shadow: 0 0 0 3px rgba(217, 83, 79, .14); }
/* red borders only — no error texts under inputs */
form[data-gr-contact] .invalid-feedback { display: none !important; }
.gr-cform__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.gr-cform__submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 10px;
  background: var(--gr-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 26px;
  cursor: pointer;
  transition: background .15s, box-shadow .15s, transform .15s;
}
.gr-cform__submit:hover { background: var(--gr-accent-dark); box-shadow: 0 8px 20px rgba(245, 129, 30, .3); transform: translateY(-1px); }
.gr-cform__submit .fas { font-size: 13px; }
.gr-cform__submit:disabled { opacity: .85; pointer-events: none; }
.gr-cform__submit.is-loading [data-role=label] { opacity: 0; }
.gr-cform__submit.is-loading::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: gr-spin .6s linear infinite;
}
.gr-cform__privacy { flex: 1 1 240px; font-size: 12px; color: var(--gr-muted); margin: 0; line-height: 1.5; }

/* consent checkbox — element selector keeps it above .gr-cform__field label */
label.gr-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--gr-text);
  cursor: pointer;
  user-select: none;
  margin: 0;
}
.gr-consent__input { position: absolute; opacity: 0; pointer-events: none; }
.gr-consent__box {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 1.5px solid #cfd5da;
  border-radius: 6px;
  background: #fff;
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, border-color .15s;
}
.gr-consent__box .fas { opacity: 0; color: #fff; transition: opacity .1s; }
.gr-consent__input:checked + .gr-consent__box { background: var(--gr-accent); border-color: var(--gr-accent); }
.gr-consent__input:checked + .gr-consent__box .fas { opacity: 1; }
.gr-consent__input:focus-visible + .gr-consent__box { box-shadow: 0 0 0 3px rgba(245, 129, 30, .2); }
.gr-consent__input.is-invalid + .gr-consent__box { border-color: #d9534f; }
.gr-consent a { color: var(--gr-accent); font-weight: 600; text-decoration: underline; }
.gr-consent a:hover { color: var(--gr-accent-dark); }
.gr-consent__req { color: var(--gr-accent); }

/* opening hours — shared card bits */
.gr-hours-banner {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: var(--gr-radius);
}
.gr-hours-banner__intro {
  display: flex;
  align-items: center;
  gap: 14px;
}
.gr-hours-banner__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gr-accent-soft);
  color: var(--gr-accent);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gr-hours-banner__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.gr-hours-banner__title { font-size: 15px; font-weight: 700; white-space: nowrap; }
.gr-hours-banner__meta .gr-open-pill { margin-bottom: 0; }
.gr-hours-banner__day {
  display: flex;
  border-radius: 10px;
  background: #f8f9fa;
}
.gr-hours-banner__day.is-today { background: var(--gr-accent-soft); box-shadow: inset 0 0 0 1px rgba(245, 129, 30, .35); }
.gr-hours-banner__name { font-size: 13px; font-weight: 600; color: var(--gr-muted); }
.gr-hours-banner__day.is-today .gr-hours-banner__name { color: var(--gr-accent-dark); }
.gr-hours-banner__val { font-size: 13px; font-weight: 600; }
.gr-hours-banner__val.is-closed { color: var(--gr-muted); font-weight: 400; }

/* desktop: full-width strip above the contact grid */
.gr-hours-banner--strip {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 20px;
  padding: 16px 22px;
}
.gr-hours-banner--strip .gr-hours-banner__intro {
  flex: 0 0 auto;
  padding-right: 22px;
  border-right: 1px solid #eef0f2;
}
.gr-hours-banner--strip .gr-hours-banner__days {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.gr-hours-banner--strip .gr-hours-banner__day {
  flex-direction: column;
  gap: 3px;
  align-items: center;
  text-align: center;
  padding: 10px 6px;
}
@media (max-width: 1199px) {
  .gr-hours-banner--strip { flex-direction: column; align-items: stretch; gap: 14px; }
  .gr-hours-banner--strip .gr-hours-banner__intro {
    padding-right: 0;
    padding-bottom: 14px;
    border-right: 0;
    border-bottom: 1px solid #eef0f2;
  }
  .gr-hours-banner--strip .gr-hours-banner__meta { flex-direction: row; align-items: center; gap: 10px; flex-wrap: wrap; }
}
@media (max-width: 991px) {
  .gr-hours-banner--strip { display: none; }
}

/* mobile: aside card with a vertical day list */
.gr-hours-banner--card { padding: 18px 20px; }
.gr-hours-banner--card .gr-hours-banner__intro {
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid #eef0f2;
}
.gr-hours-banner--card .gr-hours-banner__days {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gr-hours-banner--card .gr-hours-banner__day {
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 14px;
}
@media (min-width: 992px) {
  .gr-hours-banner--card { display: none; }
}

/* map */
.gr-map-card {
  margin-top: 20px;
  border-radius: var(--gr-radius);
  overflow: hidden;
  border: 1px solid #ebebeb;
  box-shadow: var(--gr-shadow);
  line-height: 0;
}
.gr-map-card iframe { width: 100%; height: 400px; border: 0; }

/* toasts */
.gr-toasts {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1080;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: min(380px, calc(100vw - 36px));
}
.gr-toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid #ebebeb;
  border-left: 4px solid var(--gr-accent);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(38, 43, 48, .18);
  padding: 13px 16px;
  font-size: 14px;
  color: var(--gr-text);
  animation: gr-toast-in .3s ease;
}
.gr-toast--success { border-left-color: #2cb34a; }
.gr-toast--success .gr-toast__icon { color: #2cb34a; }
.gr-toast--error { border-left-color: #d9534f; }
.gr-toast--error .gr-toast__icon { color: #d9534f; }
.gr-toast__icon { font-size: 17px; margin-top: 1px; }
.gr-toast__close {
  border: 0;
  background: none;
  color: #b0b7bd;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  font-size: 13px;
}
.gr-toast__close:hover { color: var(--gr-text); }
.gr-toast.is-leaving { animation: gr-toast-out .25s ease forwards; }
@keyframes gr-toast-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@keyframes gr-toast-out {
  to { opacity: 0; transform: translateY(8px); }
}
@media (prefers-reduced-motion: reduce) {
  .gr-toast, .gr-toast.is-leaving { animation: none; }
}

/* mobile order: branch card, form, infobox, opening hours */
@media (max-width: 991px) {
  .gr-kontakt { flex-direction: column; align-items: stretch; }
  .gr-kontakt__aside { display: contents; }
  .gr-kontakt .gr-about2__branch { order: 1; }
  .gr-kontakt .gr-about2__photo { width: 100%; max-height: 300px; }
  .gr-kontakt .gr-hours-banner { order: 2; }
  .gr-kontakt__form { width: 100%; order: 3; }
  .gr-kontakt .gr-infobox { order: 4; }
}
@media (max-width: 575px) {
  .gr-cform { padding: 22px 18px; }
  .gr-cform__grid { grid-template-columns: 1fr; }
  .gr-map-card iframe { height: 300px; }
}
.gr-form-msg { margin: 8px 0; font-size: 14px; }
.gr-form-msg.is-success { color: #1e7e34; }
.gr-form-msg.is-error { color: #dc3545; }
.gr-product__related { margin-top: 40px; }

/* ---------- article ---------- */
.gr-article__title { font-size: 32px; font-weight: 700; line-height: 1.25; margin: 0 0 12px; }
.gr-article__meta { display: flex; flex-wrap: wrap; gap: 8px 20px; color: var(--gr-muted); font-size: 14px; margin-bottom: 20px; }
.gr-article__meta-item { display: inline-flex; align-items: center; gap: 7px; }
.gr-article__meta-item .far { color: var(--gr-accent); font-size: 13px; }
.gr-article__cover { border-radius: var(--gr-radius); overflow: hidden; margin-bottom: 26px; box-shadow: var(--gr-shadow); }
.gr-article__cover img { width: 100%; display: block; }

/* editor content typography — covers the full Jodit toolbar output */
.gr-article__content { font-size: 16px; line-height: 1.75; color: var(--gr-text); overflow-wrap: break-word; }
.gr-article__content > :first-child { margin-top: 0; }
.gr-article__content h1,
.gr-article__content h2,
.gr-article__content h3,
.gr-article__content h4,
.gr-article__content h5,
.gr-article__content h6 { font-weight: 700; line-height: 1.3; margin: 30px 0 12px; }
.gr-article__content h1 { font-size: 27px; }
.gr-article__content h2 { font-size: 24px; }
.gr-article__content h3 { font-size: 20px; }
.gr-article__content h4 { font-size: 17px; }
.gr-article__content h5 { font-size: 15.5px; }
.gr-article__content h6 { font-size: 14px; text-transform: uppercase; letter-spacing: .4px; color: var(--gr-muted); }
.gr-article__content p { margin: 0 0 16px; }
.gr-article__content a { color: var(--gr-accent-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.gr-article__content a:hover { color: var(--gr-accent); }
.gr-article__content ul,
.gr-article__content ol { margin: 0 0 16px; padding-left: 26px; }
.gr-article__content li { margin-bottom: 6px; }
.gr-article__content li::marker { color: var(--gr-accent); font-weight: 700; }
.gr-article__content ul ul,
.gr-article__content ol ol,
.gr-article__content ul ol,
.gr-article__content ol ul { margin: 6px 0 0; }
.gr-article__content blockquote {
  margin: 24px 0;
  padding: 16px 20px;
  border-left: 4px solid var(--gr-accent);
  border-radius: 0 12px 12px 0;
  background: linear-gradient(135deg, var(--gr-accent-soft), #fff8f0);
}
.gr-article__content blockquote > :last-child { margin-bottom: 0; }
.gr-article__content img { max-width: 100%; height: auto; border-radius: 12px; }
.gr-article__content p img { margin: 4px 0; }
.gr-article__content figure { margin: 0 0 18px; }
.gr-article__content figcaption { font-size: 13px; color: var(--gr-muted); text-align: center; margin-top: 8px; }
.gr-article__content code {
  background: #f2f4f6;
  color: var(--gr-accent-darker);
  border-radius: 6px;
  padding: 2px 7px;
  font-size: 87%;
}
.gr-article__content pre {
  background: var(--gr-dark);
  color: #e8eaed;
  border-radius: 12px;
  padding: 16px 18px;
  margin: 0 0 18px;
  overflow-x: auto;
  font-size: 13.5px;
  line-height: 1.6;
}
.gr-article__content pre code { background: none; color: inherit; padding: 0; font-size: inherit; }
.gr-article__content hr {
  border: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gr-accent), transparent);
  margin: 28px 0;
}
/* tables get a scrollable rounded wrapper from site.js */
.gr-table-wrap {
  overflow-x: auto;
  margin: 0 0 18px;
  border: 1px solid #e7eaee;
  border-radius: 12px;
}
.gr-article__content table { width: 100%; border-collapse: collapse; font-size: 14.5px; margin: 0; }
.gr-article__content .gr-table-wrap table { border: 0; }
.gr-article__content th,
.gr-article__content td { padding: 10px 14px; border: 1px solid #e7eaee; text-align: left; vertical-align: top; }
.gr-article__content .gr-table-wrap th,
.gr-article__content .gr-table-wrap td { border-width: 0 0 1px 1px; }
.gr-article__content .gr-table-wrap th:first-child,
.gr-article__content .gr-table-wrap td:first-child { border-left: 0; }
.gr-article__content .gr-table-wrap tr:last-child td { border-bottom: 0; }
.gr-article__content th { background: #f7f8f9; font-weight: 700; }
.gr-article__content tbody tr:nth-child(even) td { background: #fafbfc; }
/* embedded videos get a 16:9 wrapper from site.js */
.gr-embed { position: relative; aspect-ratio: 16 / 9; margin: 0 0 18px; border-radius: 12px; overflow: hidden; }
.gr-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
/* floated editor images: release floats on phones */
@media (max-width: 575px) {
  .gr-article__title { font-size: 25px; }
  .gr-article__content { font-size: 15.5px; }
  .gr-article__content h1 { font-size: 23px; }
  .gr-article__content h2 { font-size: 21px; }
  .gr-article__content h3 { font-size: 18px; }
  .gr-article__content img[style*="float"] {
    float: none !important;
    margin: 0 0 14px !important;
    width: 100% !important;
    height: auto !important;
  }
}

.gr-article__gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 22px; }
.gr-article__gallery a { border-radius: 8px; overflow: hidden; display: block; aspect-ratio: 4 / 3; }
.gr-article__gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s; }
.gr-article__gallery a:hover img { transform: scale(1.04); }
@media (max-width: 575px) {
  .gr-article__gallery { grid-template-columns: repeat(2, 1fr); }
}

/* tags + share bar under the content */
.gr-article__footerbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  flex-wrap: wrap;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid #eef0f2;
}
.gr-article__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.gr-article__tags .gr-pill .fas { font-size: 10px; color: var(--gr-accent); }
.gr-share { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.gr-share__label { font-size: 13px; font-weight: 600; color: var(--gr-muted); margin-right: 2px; }
.gr-share a,
.gr-share button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #f2f4f6;
  color: var(--gr-text);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s, color .15s, transform .15s;
}
.gr-share a:hover,
.gr-share button:hover { background: var(--gr-accent); color: #fff; transform: translateY(-2px); }
.gr-share a:focus,
.gr-share button:focus { outline: none; }

.gr-article__related { margin-top: 36px; }

/* sidebar contacts card */
.gr-side-contacts { display: flex; flex-direction: column; gap: 10px; }
.gr-side-contacts__row { display: flex; align-items: center; gap: 11px; font-size: 14px; color: var(--gr-text); }
a.gr-side-contacts__row:hover { color: var(--gr-accent-dark); }
.gr-side-contacts__icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--gr-accent-soft);
  color: var(--gr-accent);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* sticky sidebar + light newsletter form */
@media (min-width: 992px) {
  .gr-blog-side { position: sticky; top: 90px; }
}
/* stacked below the article on mobile: give the sidebar its own rhythm */
@media (max-width: 991px) {
  .gr-blog-side { margin-top: 18px; padding-top: 26px; border-top: 1px solid #eef0f2; }
}
.gr-news-form {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #e3e6ea;
  border-radius: 12px;
  padding: 4px;
  transition: border-color .15s, box-shadow .15s;
}
.gr-news-form:focus-within { border-color: var(--gr-accent); box-shadow: 0 0 0 3px rgba(245, 129, 30, .14); }
.gr-news-form:has(input.is-invalid) { border-color: #d9534f; }
.gr-news-form input {
  flex: 1 1 auto;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: none;
  color: var(--gr-text);
  font-size: 14px;
  padding: 7px 8px 7px 11px;
}
.gr-news-form input::placeholder { color: #b7bec5; }
.gr-news-form button {
  position: relative;
  flex: 0 0 40px;
  width: 40px;
  height: 38px;
  border: 0;
  border-radius: 9px;
  background: var(--gr-accent);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.gr-news-form button:hover { background: var(--gr-accent-dark); }
.gr-news-form button:focus { outline: none; }
.gr-news-form button:disabled { opacity: .85; pointer-events: none; }
.gr-news-form button.is-loading [data-role=label] { opacity: 0; }
.gr-news-form button.is-loading::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: gr-spin .6s linear infinite;
}
.gr-side-posts { display: flex; flex-direction: column; gap: 12px; }
.gr-side-post { display: flex; gap: 12px; align-items: center; color: var(--gr-text); }
.gr-side-post:hover .gr-side-post__name { color: var(--gr-accent); }
.gr-side-post__img { flex: 0 0 64px; width: 64px; height: 64px; border-radius: 8px; overflow: hidden; }
.gr-side-post__img img { width: 100%; height: 100%; object-fit: cover; }
.gr-side-post__name { font-size: 14px; font-weight: 500; line-height: 1.35; }
.gr-side-post__date { font-size: 12px; color: var(--gr-muted); margin-top: 2px; }

/* ---------- contact ---------- */
.gr-contact-list { list-style: none; margin: 0; padding: 0; }
.gr-contact-list li { display: flex; gap: 12px; align-items: baseline; padding: 8px 0; border-bottom: 1px solid #f0f0f0; }
.gr-contact-list li:last-child { border-bottom: 0; }
.gr-contact-list__icon { color: var(--gr-accent); width: 18px; text-align: center; flex: 0 0 auto; }
.block-map__body { position: relative; height: 380px; }
.block-map__body iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- responsive ---------- */
/* product detail: stacked columns need their own vertical rhythm (BS4 has no g-* gutters) */
@media (max-width: 991px) {
  .gr-product__info { margin-top: 26px; }
}
@media (max-width: 575px) {
  .gr-product__name { font-size: 23px; }
  .gr-product__cta .gr-btn { flex-basis: 100%; }
  .gr-price-box { padding: 16px; }
  .gr-product__description,
  .gr-product__inquiry,
  .gr-product__related { margin-top: 28px; }
  .gr-inquiry-card__side { padding: 24px 20px; }
  .gr-inquiry-card__main { padding: 22px 18px; }
}
@media (max-width: 1199px) {
  .gr-features__list { grid-template-columns: repeat(2, 1fr); }
  .gr-product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
  .gr-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .gr-product-grid { grid-template-columns: repeat(2, 1fr); }
  .gr-post-grid { grid-template-columns: repeat(2, 1fr); }
  .gr-about__inner { grid-template-columns: 1fr; padding: 24px; }
}
@media (max-width: 575px) {
  .gr-features__list { grid-template-columns: 1fr; }
  .gr-cat-grid { grid-template-columns: 1fr; }
  .gr-product-grid { grid-template-columns: 1fr; }
  .gr-post-grid { grid-template-columns: 1fr; }
  .gr-section__title { font-size: 20px; }
  .gr-section__header { flex-wrap: wrap; gap: 8px; }
}

/* ---------- site notices (announcement bars above the header) ---------- */
/* Bars stay pinned on scroll; the theme's stuck nav/mobile header is offset below them
   via --gr-notices-h (kept in sync by the inline script in _header.php). */
.gr-notices {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 110;
}
.nav-panel--stuck { top: var(--gr-notices-h, 0px); }
.mobile-header--stuck .mobile-header__panel { top: var(--gr-notices-h, 0px); }
.gr-notice { color: #fff; }
.gr-notice--info { background: var(--gr-dark); }
.gr-notice--warning { background: #c77700; }
.gr-notice--danger { background: #c23434; }
.gr-notice + .gr-notice { border-top: 1px solid rgba(255, 255, 255, 0.15); }
.gr-notice__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
}
.gr-notice__icon {
  flex: 0 0 auto;
  font-size: 14px;
  opacity: 0.9;
}
.gr-notice__text {
  flex: 1 1 auto;
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.gr-notice__link {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
  white-space: nowrap;
  margin-left: 6px;
}
.gr-notice__link:hover { color: #fff; opacity: 0.85; }
.gr-notice__close {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: -4px 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #fff;
  opacity: 0.7;
  cursor: pointer;
  font-size: 13px;
}
.gr-notice__close:hover { opacity: 1; background: rgba(255, 255, 255, 0.12); }
@media (max-width: 575px) {
  .gr-notice__inner { padding: 8px 15px; }
  .gr-notice__text { font-size: 13px; }
  .gr-notice__link { display: inline-block; margin-left: 0; }
}
