*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    overflow-x: hidden;
}
h1, h2, h3,h4,h5,h6, p, a, ul, li,span {
    margin: 0;
    padding: 0;
}
ul {
    list-style: none;
}
a{
    text-decoration: none;
    color: inherit;
}

@font-face {
    font-family: 'Acumin';
    src: url(../fonts/Acumin-Variable-Concept.ttf);
}
@font-face {
    font-family: 'DMSans-Regular';
    src: url(../fonts/DMSans-Regular.ttf);
}
@font-face {
    font-family: 'DMSans-Regular';
    src: url(../fonts/DMSans-Regular.ttf);
}
@font-face {
    font-family: 'DMSans-Medium';
    src: url(../fonts/DMSans-Medium.ttf);
}
@font-face {
    font-family: 'DMSans-Bold';
    src: url(../fonts/DMSans-Bold.ttf);
}
@font-face {
    font-family: 'Poppins-Regular';
    src: url(../fonts/Poppins-Regular.ttf);
}
@font-face {
    font-family: 'Poppins-Medium';
    src: url(../fonts/Poppins-Medium.ttf);
}
@font-face {
    font-family: 'Poppins-Bold';
    src: url(../fonts/Poppins-Bold.ttf);
}
.themecolor{
    color: #5f1a59;
}
/* header css */


/* Fullscreen Preloader end */

.navbar-brand img {
    width: 100%;
    max-width: 70px;
}
.navbar .nav-item {
    margin-right: 20px;
}
.navbar .nav-link {
    font-family: 'Acumin', sans-serif;
    font-size: 18px;
    color: #1e1e1e;
    text-transform: uppercase;
    padding: 5px 5px !important;
    transition: all 0.3s ease;
}
.navbar .nav-link:hover {
    color: #581d56;
}
.navbar .contact-btn a {
    background-color: #5f1a59;
    color: #fff;
    padding: 6px 15px !important;
    border-radius: 5px;
} 
.navbar .contact-btn a.nav-link {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 4px !important;
    padding-top: 7px !important;
}
.navbar .contact-btn a.nav-link:hover{
    background-color: #b56cad;
}
.hover_btn {
  position: relative;
  cursor: pointer;
  overflow: hidden;
} 
.hover_btn span{
    position: relative;
    z-index: 3;
    color: #fff;
}
.hover_btn::before,
.hover_btn::after {
  content: '';
  position: absolute;
  height: 1px;
  width: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
}

.hover_btn::before {
  background: #b56cad;
  transition: 0.8s ease-in-out;
  transition-delay: 0.1s;
}


.hover_btn:hover::before {
  transform: translate(-50%, -50%) scale(600);
  margin: 0 auto;
}


.navbar .nav-link.active{
    color:#581d56;
}
.navbar .email-btn{
    background: #fff;
    border-radius: 50%;
    width: 38px;
    height: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #5f1a59;
    font-size: 20px;
    transition: all .3s ease-in-out;
        border: 1px solid transparent;
    line-height: 1;
}
.header-bg .navbar .email-btn {
    border: 1px solid #5f1a59;
}
.navbar .email-btn:hover{
    background: #5f1a59;
    color: #fff;
}
.navbar .email-btn a:hover{
    color: #fff;
}
.navbar .nav-item:last-child {
    margin-right: 0;
}




/* Hide header */
.nav-up {
    transform: translateY(-100%);
}

/* Show header */
.nav-down {
    transform: translateY(0);
}

/* Jedrek site shell */
:root {
  --jedrek-blue: #df625e;
  --jedrek-green: #b8d92f;
  --jedrek-red: #df5f58;
  --jedrek-text: #1c1f26;
  --jedrek-muted: #71758a;
  --jedrek-surface: #f3f4f8;
  --jedrek-line: rgba(28, 31, 38, 0.12);
  --jedrek-radius: 24px;
  --jedrek-shadow: 0 20px 50px rgba(18, 26, 62, 0.08);
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--jedrek-text);
  background: #fff;
}

.container {
  width: min(1280px, calc(100% - 32px));
}

.jedrek-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.jedrek-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
}

.jedrek-header__brand img,
.jedrek-footer__brand img {
  max-width: 210px;
  height: auto;
}

.jedrek-header__logo-link,
.jedrek-footer__logo-link {
  display: inline-flex;
  align-items: center;
}

.jedrek-header__site-name,
.jedrek-footer__site-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--jedrek-blue);
}

.jedrek-header__panel {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

.jedrek-menu,
.jedrek-footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jedrek-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.jedrek-menu a,
.jedrek-footer-menu a {
  color: var(--jedrek-text);
  text-decoration: none;
  font-size: 1.2rem;
}

.jedrek-menu li.current-menu-item > a,
.jedrek-menu a:hover,
.jedrek-footer-menu a:hover {
  color: var(--jedrek-red);
}

.jedrek-header__actions{
  display: flex;
  align-items: center;
  gap: 30px;
}
.jedrek-social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.jedrek-social-links a,
.jedrek-header__search {
  color: var(--jedrek-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.jedrek-header__search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.jedrek-social-links a:hover,
.jedrek-header__search:hover {
  color: var(--jedrek-red);
}

.jedrek-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 999px;
  background: #fff;
  color: var(--jedrek-text);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: var(--jedrek-shadow);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

/* Product catalog */
.jedrek-catalog {
  padding: 0px 0 72px;
  background: #fff;
}

.jedrek-catalog .container {
  width: min(1440px, calc(100% - 32px));
}

.jedrek-catalog__shell {
  padding: 28px 22px 34px;

}

.jedrek-catalog__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: #7384a0;
  font-size: 16px;
  line-height: 1.3;
}

.jedrek-catalog__breadcrumb a {
  color: #7384a0;
}

.jedrek-catalog__breadcrumb-sep {
  color: #9cadc4;
}

.jedrek-catalog__breadcrumb a:hover {
  color: #0a5a8e;
}

.jedrek-catalog__hero {
  margin-bottom: 44px;
}

.jedrek-catalog__hero-copy {
  max-width: 760px;
}

.jedrek-catalog__title {
  margin-bottom: 18px;
  font-size: 36px;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #1b2430;
}

.jedrek-catalog__intro {
  max-width: 720px;
  color: #5e718b;
  font-size: 15px;
  line-height: 1.65;
}

.jedrek-catalog__layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 24px;
}

.jedrek-catalog__sidebar {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.jedrek-catalog__filter-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.jedrek-catalog__filter-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.jedrek-catalog__filter-title {
  flex: 1;
  color: #fff;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #a6ce39;
  padding: 10px 10px;
  border-radius: 6px;
}

.jedrek-catalog__filter-toggle-icon {
  display: none;
}

.jedrek-catalog__filter-body {
  display: block;
}

.jedrek-catalog__category-list,
.jedrek-catalog__checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jedrek-catalog__category-list {
  max-height: 400px;
  padding-right: 8px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #c9d4e3 #f3f3f3;
}

.jedrek-catalog__category-list::-webkit-scrollbar {
  width: 6px;
}

.jedrek-catalog__category-list::-webkit-scrollbar-track {
  background: transparent;
}

.jedrek-catalog__category-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #c9d4e3;
}

.jedrek-catalog__category-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 5px  16px;
  border-radius: 6px;
  width: 100%;
  color: #284b78;
  font-size: 15px;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.jedrek-catalog__category-list li {
    border-bottom: 1px solid #dddd;
    padding-bottom: 7px;
}

.jedrek-catalog__category-link:hover,
.jedrek-catalog__category-link.is-active {
  background: #f9f9f9;
  color: #000;
  /* box-shadow: inset 0 0 0 1px rgba(120, 151, 187, 0.08); */
}

.jedrek-catalog__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 21px;
    height: 21px;
    padding: 5px 9px;
    border-radius: 6px;
    /*background: #2e2f7f;*/
    color: #2e2f7f;
    font-size: 12px;
    font-weight: 600;
}

.jedrek-catalog__checkitem {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #5e6b80;
  font-size: 13px;
}

.jedrek-catalog__checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid #cfd7e4;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.jedrek-catalog__checkitem.is-active .jedrek-catalog__checkbox,
.jedrek-catalog__checkitem:hover .jedrek-catalog__checkbox {
  border-color: var(--jedrek-red);
  background: linear-gradient(180deg, #ff6c60 0%, #ef4136 100%);
}

.jedrek-catalog__support-card {
  position: relative;
  overflow: hidden;
  padding: 22px 18px;
  border-radius: 20px;
  background: linear-gradient(160deg, #1c2b82 0%, #1a2752 100%);
  color: #fff;
}

.jedrek-catalog__support-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.jedrek-catalog__support-card h3 {
  margin-bottom: 12px;
  font-size: 19px;
}

.jedrek-catalog__support-card p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.7;
}

.jedrek-catalog__support-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  color: #1f2859;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.jedrek-catalog-line {
    display: block;
    width: 180px;
    height: 2px;
    background: #d43c2f;
    margin-bottom: 18px;
}
.jedrek-catalog__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding: 11px 20px;
  border-radius: 6px;
  background: #f3f3f3;
}

.jedrek-catalog__results,
.jedrek-catalog__sort {
  color: #5d6e88;
  font-size: 14px;
}

.jedrek-catalog__sort {
  display: flex;
  align-items: center;
  gap: 12px;
}

.jedrek-catalog__sort .woocommerce-ordering {
  margin: 0;
}

.jedrek-catalog__sort .orderby {
  min-width: 195px;
  height: 36px;
  padding: 0 38px 0 16px;
  border: 1px solid #d4deeb;
  border-radius: 4px;
  background-color: #fff;
  color: #1b2430;
  font-size: 14px;
}

.jedrek-catalog__grid.products {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  direction: ltr;
  gap:16px 0;
  width: 100%;
  margin: 0;
  padding: 0;
}

.jedrek-catalog__grid.products::before,
.jedrek-catalog__grid.products::after {
  display: none;
}

.jedrek-product-card.product {
  float: none !important;
  clear: none !important;
  direction: ltr;
  flex: 0 0 calc((100% - 50px ) / 3);
  max-width: calc((100% - 50px) / 3);
  width: calc((100% - 50px) / 3) !important;
  margin: 0 8px !important;
  padding: 20px !important;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 0px 2px rgb(31 53 84 / 55%);
  overflow: hidden;
}

.jedrek-catalog__grid.products li.product.first,
.jedrek-catalog__grid.products li.product.last,
.jedrek-catalog__grid.products li.product:nth-child(3n+1),
.jedrek-catalog__grid.products li.product:nth-child(3n),
.woocommerce .jedrek-catalog__grid.products li.product.first,
.woocommerce .jedrek-catalog__grid.products li.product.last {
  /*clear: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;*/
}

.jedrek-catalog__content {
  min-width: 0;
  width: 100%;
}

.jedrek-product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 0.92;
  background: linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
}

.jedrek-product-card__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  margin: 0 !important;
}

.jedrek-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #53667d;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.jedrek-product-card{
  padding: 20px;
}
.jedrek-product-card__body {
  padding: 20px 0px 20px;
}

.jedrek-product-card__title {
  margin-bottom: 10px !important;
  font-size: 20px;
  line-height: 1.55;
      min-height: 65px;
}

.jedrek-product-card__title a {
  color: #1f2732;
}

.jedrek-product-card__summary {
  min-height: 74px;
  margin-bottom: 22px;
  color: #617287;
  font-size: 13px;
  line-height: 1.6;
}

.jedrek-product-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 16px;
    border-radius: 4px;
    background: #a6ce39;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.jedrek-catalog .woocommerce-pagination {
  margin-top: 28px;
}

.jedrek-catalog .woocommerce-pagination ul.page-numbers {
  display: inline-flex;
  gap: 8px;
  border: 0 !important;
}

.jedrek-catalog .woocommerce-pagination ul.page-numbers li {
  border: 0 !important;
}

.jedrek-catalog .woocommerce-pagination .page-numbers a,
.jedrek-catalog .woocommerce-pagination .page-numbers span {
  min-width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f4f6fa;
  color: #435166;
  line-height: 24px;
}

.jedrek-catalog .woocommerce-pagination .page-numbers .current {
  background: #1f2859;
  color: #fff;
}

.jedrek-product-page {
  padding: 28px 0 70px;
  background: #fff;
}

.jedrek-product-page__shell {
  padding: 26px 32px 40px;
  border-radius: 6px;
  background: #f3f3f3;
}

.jedrek-product-page__breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: #6d7a8c;
  font-size: 13px;
}

.jedrek-product-page__breadcrumb a {
  color: #516174;
}

.jedrek-product-page__breadcrumb-sep {
  color: #94a2b5;
}

.jedrek-product-page__hero {
  margin-bottom: 34px;
}

.jedrek-product-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: 28px;
  align-items: start;
}

.jedrek-product-gallery__stage {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(159, 177, 198, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 36px rgba(24, 39, 75, 0.05);
}

.jedrek-product-page__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #dce9f8;
  color: #517091;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.jedrek-product-gallery__main {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #edf2f6 100%);
}

.jedrek-product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.jedrek-product-gallery__thumbs {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.jedrek-product-gallery__thumb {
  width: 76px;
  height: 76px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(37, 56, 88, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.jedrek-product-gallery__thumb.is-active,
.jedrek-product-gallery__thumb:hover {
  border-color: #b6b3b3;
  transform: translateY(-1px);
}

.jedrek-product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.jedrek-product-page__summary {
  padding-top: 4px;
}

.jedrek-product-page__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #a6ce39;
  color: #000;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.jedrek-product-page__title {
  margin-bottom: 12px;
  color: #20262e;
  font-size: 30px;
  line-height: 1.03;
  font-family: "Poppins-Medium", sans-serif;
}

.jedrek-product-page__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #6b7787;
  font-size: 13px;
}

.jedrek-product-page__rating .star-rating {
  margin: 0;
  color: #ffb400;
}

.jedrek-product-page__intro {
  margin-bottom: 22px;
  color: #677587;
  font-size: 14px;
  line-height: 1.8;
  max-width: 560px;
}

.jedrek-product-page__intro p + p {
  margin-top: 12px;
}

.jedrek-product-page__highlights {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.jedrek-product-page__highlights li {
  position: relative;
  padding-left: 54px;
  color: #27313d;
  font-size: 15px;
  font-family: "Poppins-Medium", sans-serif;
}

.jedrek-product-page__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #d4f1ff 0%, #9cd9f5 62%, #7ec9eb 100%);
  transform: translateY(-50%);
  box-shadow: inset 0 0 0 1px rgba(38, 93, 132, 0.08);
}

.jedrek-product-page__highlights li::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 10px;
  height: 6px;
  border-left: 2px solid #2d6d8d;
  border-bottom: 2px solid #2d6d8d;
  transform: translateY(-60%) rotate(-45deg);
}

.jedrek-product-page__cta {
  border-top: 1px solid rgba(148, 162, 181, 0.22);
  padding-top: 20px;
}

.jedrek-product-page__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: min(100%, 340px);
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 6px;
  background: #1c2b82;
  color: #fff;
  font-size: 20px;
  font-family: "Poppins-Bold", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.jedrek-product-page__button:hover {
  background: #14216a;
  transform: translateY(-1px);
}
.jedrek-product-page-line{
    display: block;
    width: 180px;
    height: 2px;
    background: #d43c2f;
    margin-top: 5px;
    margin-bottom: 10px;
}
.jedrek-product-page__lead-time {
  margin-top: 10px;
  color: #7b8797;
  font-size: 12px;
}

.jedrek-product-page__section + .jedrek-product-page__section {
  margin-top: 40px;
}

.jedrek-product-page__section-heading {
  margin-bottom: 18px;
}

.jedrek-product-page__section-heading h2 {
  margin-bottom: 4px;
  color: #1f252d;
  font-size: 32px;
  line-height: 1.12;
  font-family: "Poppins-Bold", sans-serif;
}

.jedrek-product-page__section-heading p {
  color: #798596;
  font-size: 14px;
}

.jedrek-product-specs {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 34px rgba(28, 43, 71, 0.06);
}

.jedrek-product-specs__table {
  width: 100%;
  border-collapse: collapse;
}

.jedrek-product-specs__table thead th {
  padding: 15px 22px;
  background: #c1c1c1;
  color: #000;
  font-size: 13px;

  text-align: left;
      font-weight: 400;
}

.jedrek-product-specs__table tbody td {
  padding: 14px 22px;
  border-top: 1px solid #ebf0f5;
  color: #607184;
  font-size: 14px;
}

.jedrek-product-specs__table tbody td:first-child {
  width: 34%;
  color: #232d39;
  font-family: "Poppins-Bold", sans-serif;
}

.jedrek-product-page__section--overview .jedrek-product-page__content {
  padding: 26px 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  color: #888;
  box-shadow: 0 14px 28px rgba(28, 43, 71, 0.05);
  font-size: 14px;
}

.jedrek-product-page__content p + p {
  margin-top: 14px;
}

.jedrek-product-page__related-grid.products {
  margin-top: 6px;
  display: block;
}

.jedrek-product-page__related-carousel .owl-stage-outer {
  padding: 4px 0 10px;
}

.jedrek-product-page__related-carousel .owl-stage {
  display: flex;
}

.jedrek-product-page__related-carousel .owl-item {
  display: flex;
  height: auto;
}

.jedrek-product-page__related-carousel .owl-item > .jedrek-product-card.product {
  flex: 1 1 auto;
  width: 100% !important;
  max-width: none;
}

.jedrek-product-page__related-carousel .jedrek-product-card.product {
  margin: 0;
}

.jedrek-product-page__related-carousel.owl-loaded .jedrek-product-card__summary {
  min-height: 88px;
}

.jedrek-product-page__related-carousel .owl-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.jedrek-product-page__related-carousel .owl-nav button.owl-prev,
.jedrek-product-page__related-carousel .owl-nav button.owl-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #d7dfeb !important;
  background: #fff !important;
  color: #24314a !important;
  font-size: 22px !important;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.jedrek-product-page__related-carousel .owl-nav button.owl-prev:hover,
.jedrek-product-page__related-carousel .owl-nav button.owl-next:hover {
  background: #2e2f7f !important;
  border-color: #2e2f7f !important;
  color: #fff !important;
}

.jedrek-product-page__related-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.jedrek-product-page__related-carousel .owl-dots .owl-dot span {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c9d4e3;
}

.jedrek-product-page__related-carousel .owl-dots .owl-dot.active span {
  background: #2e2f7f;
}

.jedrek-product-modal .modal-dialog {
  max-width: 660px;
}

.jedrek-product-modal .modal-content {
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(16, 28, 52, 0.24);
}

.jedrek-product-modal .modal-header {
  align-items: flex-start;
  padding: 24px 24px 12px;
  border-bottom: 0;
}

.jedrek-product-modal__eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: #6b7d92;
  font-size: 11px;
  font-family: "Poppins-Bold", sans-serif;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.jedrek-product-modal .modal-title {
  color: #000000;
    font-size: 20px;
    line-height: 1.25;
    text-transform: uppercase;
}

.jedrek-product-modal .modal-body {
  padding: 0 24px 28px;
}

.jedrek-product-modal__product {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 16px 18px;
  border-radius: 6px;
  background: #f3f3f3;
  color: #000;
  font-size: 14px;
  margin-bottom: 18px;
}

.jedrek-product-modal__product strong {
  color: #1f252d;
}

.jedrek-product-modal__form label {
  display: block;
  margin-bottom: 14px;
  color: #000;
  font-size: 13px;
}

.jedrek-product-modal__form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 6px;
}

.jedrek-product-modal__form .wpcf7-text,
.jedrek-product-modal__form .wpcf7-email,
.jedrek-product-modal__form .wpcf7-textarea {
  width: 100%;
  padding: 6px 16px;
  border: 1px solid #d8e1ea;
  border-radius: 4px;
  background: #fff;
  color: #23303b;
  font-size: 15px;
  outline: 0;
}

.jedrek-product-modal__form .wpcf7-textarea {
  height: 120px;
  resize: vertical;
}

.jedrek-product-modal__form .wpcf7-text:focus,
.jedrek-product-modal__form .wpcf7-email:focus,
.jedrek-product-modal__form .wpcf7-textarea:focus {
  border-color: #9ab7d5;
  box-shadow: 0 0 0 0.2rem rgba(99, 148, 192, 0.12);
}

.jedrek-product-modal__form .wpcf7-submit {
  min-width: 150px;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 4px;
  background: #d43c2f;
  color: #fff;
  font-size: 14px;
}

.jedrek-product-modal__form .wpcf7-spinner {
  margin: 14px 0 0 12px;
}

.jedrek-product-modal__form .wpcf7-response-output {
  margin: 16px 0 0 !important;
  padding: 12px 14px !important;
  border-radius: 12px;
  font-size: 14px;
}

.jedrek-product-modal__empty {
  margin: 0;
  color: #6c7a8b;
}

@media (max-width: 1199px) {
  .jedrek-product-page__grid {
    grid-template-columns: 1fr;
  }

  .jedrek-product-page__summary {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .jedrek-product-page {
    padding: 18px 0 48px;
  }

  .jedrek-product-page__shell {
    padding: 18px 16px 28px;
    border-radius: 20px;
  }

  .jedrek-product-gallery__stage {
    padding: 16px;
  }

  .jedrek-product-gallery__thumbs {
    gap: 10px;
  }

  .jedrek-product-gallery__thumb {
    width: 62px;
    height: 62px;
  }

  .jedrek-product-page__title {
    font-size: 2rem;
  }

  .jedrek-product-page__highlights li {
    font-size: 14px;
    padding-left: 46px;
  }

  .jedrek-product-page__button {
    width: 100%;
  }

  .jedrek-product-page__section-heading h2 {
    font-size: 24px;
  }

  .jedrek-product-specs__table thead {
    display: none;
  }

  .jedrek-product-specs__table,
  .jedrek-product-specs__table tbody,
  .jedrek-product-specs__table tr,
  .jedrek-product-specs__table td {
    display: block;
    width: 100%;
  }

  .jedrek-product-specs__table tr + tr {
    border-top: 1px solid #ebf0f5;
  }

  .jedrek-product-specs__table tbody td {
    padding: 8px 16px;
    border: 0;
  }

  .jedrek-product-specs__table tbody td:first-child {
    padding-top: 16px;
  }

  .jedrek-product-specs__table tbody td:last-child {
    padding-bottom: 16px;
  }

  .jedrek-product-modal .modal-title {
    font-size: 24px;
  }

  .jedrek-product-modal .modal-header,
  .jedrek-product-modal .modal-body {
    padding-left: 18px;
    padding-right: 18px;
  }
}

.jedrek-catalog__empty {
  padding: 44px 28px;
  border-radius: 18px;
  background: #f5f7fb;
  text-align: center;
}

.jedrek-catalog__empty h2 {
  margin-bottom: 10px;
  font-size: 28px;
}

.jedrek-catalog__empty p {
  color: #667085;
}

@media (max-width: 1199px) {
  .jedrek-catalog__layout {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .jedrek-product-card.product {
    flex-basis: calc((100% - 35px) / 2);
    max-width: calc((100% - 35px) / 2);
    width: calc((100% - 35px) / 2) !important;
  }

  .jedrek-catalog__title {
    font-size: 46px;
  }
}

@media (max-width: 991px) {
  .jedrek-catalog__layout,
  .jedrek-catalog__toolbar {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 767px) {
  .jedrek-catalog {
    padding: 20px 0 48px;
  }

  .jedrek-catalog__shell {
    padding: 0;
    border-radius: 24px;
  }

  .jedrek-catalog__title {
    font-size: 30px;
  }

  .jedrek-catalog__intro,
  .jedrek-catalog__results,
  .jedrek-catalog__sort,
  .jedrek-catalog__category-link {
    font-size: 14px;
  }

  .jedrek-catalog__grid.products {
    gap: 16px;
  }

  .jedrek-product-card.product {
    flex-basis: 100%;
    max-width: 100%;
    width: 100% !important;
  }

  .jedrek-catalog__toolbar {
    padding: 16px;
  }

  .jedrek-catalog__filter-group {
    gap: 20px;
  }

  .jedrek-catalog__filter-toggle {
    align-items: center;
  }

  .jedrek-catalog__filter-title {
    padding-right: 16px;
  }

  .jedrek-catalog__filter-toggle-icon {
    position: relative;
    display: inline-flex;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-left: -38px;
    pointer-events: none;
  }

  .jedrek-catalog__filter-toggle-icon::before,
  .jedrek-catalog__filter-toggle-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .jedrek-catalog__filter-toggle-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .jedrek-catalog__filter-toggle[aria-expanded="true"] .jedrek-catalog__filter-toggle-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .jedrek-catalog__filter-body {
    display: none;
  }

  .jedrek-catalog__filter-body.is-open {
    display: block;
  }

  .jedrek-product-page__related-carousel .owl-nav {
    justify-content: center;
    margin-top: 18px;
  }
}

.jedrek-button:hover {
  background: var(--jedrek-blue);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

.jedrek-header__search-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-18px);
  transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.35s ease;
}

.jedrek-header.is-search-open + .jedrek-header__search-panel {
  max-height: 220px;
  opacity: 1;
  transform: translateY(0);
}


.jedrek-header__search-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0px;
  border-radius: 24px;
}

.jedrek-search-form {
  width: 100%;
}

.jedrek-search-field-wrap {
  position: relative;
  width: 100%;
}

.jedrek-header__search-panel .search-field {
  width: 100%;
  min-width: 0;
  padding: 18px 72px 18px 24px;
  border: 1px solid rgba(52, 54, 146, 0.18);
  border-radius: 999px;
  background: #fff;
  font-size: 1.05rem;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.jedrek-header__search-panel .search-field:focus {
  border-color: var(--jedrek-blue);
  box-shadow: 0 0 0 0.2rem rgba(52, 54, 146, 0.12);
}

.jedrek-search-submit {
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  background: var(--jedrek-blue);
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.jedrek-search-submit:hover {
  background: var(--jedrek-red);
  transform: translateY(-50%) scale(1.04);
}

.jedrek-header__search-close {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(52, 54, 146, 0.08);
  color: var(--jedrek-blue);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.jedrek-header__search-close:hover {
  background: rgba(212, 0, 42, 0.12);
  color: var(--jedrek-red);
  transform: rotate(90deg);
}

.jedrek-header__end {
  display: none;
}

.jedrek-header__bar-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--jedrek-muted);
  font-size: 1.1rem;
  touch-action: manipulation;
  transition: color 0.2s ease;
}

.jedrek-header__bar-search:hover {
  color: var(--jedrek-red);
}

.jedrek-header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 25px;
  padding: 0;
  border: 0;
  background: transparent;
  touch-action: manipulation;
}

.jedrek-header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--jedrek-blue);
}

.jedrek-home section {
  position: relative;
}

.jedrek-home section:not(.jedrek-hero) {
  /*padding: 96px 0;*/
}

.jedrek-section-heading {
  margin-bottom: 48px;
}

.jedrek-section-heading--center {
  text-align: center;
}

.jedrek-section__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--jedrek-text);
  font-size: 1.25rem;
  font-weight: 400;
}

.jedrek-section__title,
.jedrek-hero__copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.jedrek-section__title::after {
  content: "";
  display: block;
  width: 180px;
  max-width: 100%;
  height: 2px;
  margin-top: 18px;
  background: rgba(223, 95, 88, 0.7);
}

.jedrek-section-heading--center .jedrek-section__title::after,
.jedrek-brands__copy .jedrek-section__title::after {
  margin-inline: auto;
}

.jedrek-section__text,
.jedrek-feature__content {
  color: var(--jedrek-muted);
  font-size: 1.2rem;
  line-height: 1.8;
}

.jedrek-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--jedrek-red);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


.jedrek-hero {
    position: relative;
}

/* SLIDE */
.hero-slide {
    position: relative;
    min-height: 600px;   /* instead of fixed height */
    height: auto;
    width: 100%;
    overflow: hidden;
}

/* IMAGE */
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: auto;

    max-width: 500px;
    width: 100%;
    z-index: 2;
}

/* TEXT */
.hero-title {
    font-size: clamp(26px, 4vw, 52px);
    line-height: 1.2;
    font-weight: 300;
    color: #fff;
    margin-bottom: 15px;
    opacity: 0;
}

.hero-sub {
    font-size: clamp(14px, 2vw, 18px);
    color: #fff;
    margin-bottom: 25px;
    opacity: 0;
}
.hero-title,
.hero-sub {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* BUTTON */
.hero-btn {
    display: inline-block;
    background: #fff;
    padding: 12px 25px;
    font-size: 14px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transition: 0.3s;
    max-width: 260px;
    display: inline-block;
    margin-top: 10px;
    max-width: 260px;
}

.hero-btn:hover {
    background: #d43c2f;
    color: #fff;
}
/* ACTIVE SLIDE ANIMATION */
.owl-item.active .hero-title {
    animation: fadeUp 0.6s ease forwards;
}

.owl-item.active .hero-sub {
    animation: fadeUp 0.8s ease forwards;
}

.owl-item.active .hero-btn {
    animation: fadeUp 1s ease forwards;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.jedrek-hero .owl-nav {
    position: absolute;
    bottom: 150px;
    right: 10%;
    width: 70px;
}
.jedrek-hero .owl-nav button {
    font-size: 24px !important;
        color: #fff !important;
        position: absolute;
}
.jedrek-hero .owl-nav button:hover{
  color: #000 !important;
}
.jedrek-hero button.owl-prev {
    left: 0;
}
.jedrek-hero button.owl-next {
    right: 0;
}

/* KEYFRAME */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 1200px) {
  .hero-title {
      font-size: 44px;
  }
}
@media (max-width: 992px) {
  .hero-title {
      font-size: 36px;
  }
  .hero-content {
      left: 40px;
      right: 40px;
  }
}
@media (max-width:768px) {

    .hero-slide {
        min-height: 420px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-sub {
        font-size: 14px;
    }

    .hero-content {
        bottom: auto;
        transform: translate(-50%, -50%);
        left: 50%;
        right: 20px;
        top: 26%;
        text-align: center;
        padding: 0 15px;
    }
}
/* ── About section ──────────────────────────────────────────────────── */
.jedrek-about {
    position: relative;
    background: #fff;
    overflow: hidden;
}

/* FLEX SPLIT (NOT bootstrap row) */
.jedrek-about__wrap {
    display: flex;
    align-items: stretch;   /* force both columns to the same height */
    min-height: 450px;
}

/* LEFT */
.jedrek-about__left {
    width: 45%;
    display: flex;
    align-items: flex-start;
}
.about-text p {
    margin-bottom: 10px;
}
.content-inner {
    max-width: 520px;
    /* padding-left: 120px; */
    margin-left: auto;
}

/* RIGHT IMAGE — overflow:hidden clips baseline gap; block removes it */
.jedrek-about__right {
    width: 55%;
    overflow: hidden;
    flex-shrink: 0;
}

.jedrek-about__right img {
    display: block;         /* kills the ~4px inline-baseline gap */
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TYPOGRAPHY FIX (IMPORTANT) */
.about-label {
    font-size: 24px;
    color: #000;
    line-height: 1.25;
}

.about-title {
    font-size: 42px;
    font-weight: 600;
    margin: 0 0;
    text-transform: uppercase;
}

.about-divider {
    width: 110px;
    height: 2px;
    background: #d43c2f;
    margin: 15px 0 25px;
}

.about-text {
    font-size: 15px;
    line-height: 1.8;
    color: #6b6b6b;
}

.about-link {
    margin-top: 20px;
    display: inline-block;
    color: #d43c2f;
    font-size: 13px;
    letter-spacing: 1px;
}
.jedrek-stats {
    position: absolute;
    bottom: -55px;

    /* ❌ REMOVE center alignment */
    /* left: 50%; */
    /* transform: translateX(-50%); */

    /* ✅ CORRECT */
    left: 8%;   /* align with content start */
    width: 75%; /* ends exactly before right edge */

    max-width: 1100px;
    background: #2e2f7f;
    padding: 38px 30px;
    z-index: 5;
}

/* GRID */
.jedrek-stats .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ITEM */
.stat-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 10px;
}

/* DIVIDER */
.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.2);
}
.stat-icon {
    height: 28px;
    margin-bottom: 10px;
    opacity: 0.9;
}

/* NUMBER (IMPORTANT) */
.stat-box h3 {
    font-size: 32px; /* reduce from your current */
    font-weight: 600;
    color: #a6ce39;
    margin-bottom: 6px;
    line-height: 1;
}

/* LABEL */
.stat-box p {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.4;
    max-width: 140px;
    margin: 0 auto;
}
.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%; /* NOT full height */
    width: 1px;
    background: rgba(255,255,255,0.15);
}
.jedrek-about::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 70px;
    width: 100%;
    background: #a6ce39;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .jedrek-about {
        padding-bottom: 160px;
    }

    .jedrek-about__content {
        margin-bottom: 30px;
    }

    .jedrek-stats {
        position: relative;
        bottom: auto;
        margin-top: 40px;
    }

    .stat-item {
        border-right: none;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .about-title {
        font-size: 32px;
    }

    .about-text {
        max-width: 100%;
    }
}


/* ── Footer ── */
.jedrek-footer {
  background: #1c2b82;
  color: rgba(255, 255, 255, 0.68);
}

/* Row 1 – Logo */
.jedrek-footer__logo-row {
  padding: 48px 0 0;
}

.jedrek-footer__logo-image {
  display: block;
  max-width: 200px;
  height: auto;
}

/* Row 2 – 4-column grid */
.jedrek-footer__grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.9fr 1fr;
  gap: 40px;
  padding: 20px 0 10px;
}

.jedrek-footer__col-title {
  margin: 0 0 16px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.jedrek-footer__address-text {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

.jedrek-footer-menu,
.jedrek-footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jedrek-footer-menu li {
  margin-bottom: 13px;
}

.jedrek-footer-menu a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.jedrek-footer-menu a:hover {
  color: #fff;
}

.jedrek-footer__contact-link {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.2s ease;
}

.jedrek-footer__contact-link:hover {
  color: #fff;
}

.jedrek-footer__contact-link--accent {
  color: #56b6ff;
}

.jedrek-footer__contact-link--accent:hover {
  color: #90d0ff;
}

/* Row 3 – Social links */
.jedrek-footer__social-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  padding: 10px 0;
}

.jedrek-footer__social-row a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.jedrek-footer__social-row a:hover {
  color: #fff;
}

/* Row 4 – Copyright bar */
.jedrek-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.48);
}

.jedrek-footer__bottom a {
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  transition: color 0.2s ease;
}

.jedrek-footer__bottom a:hover {
  color: #fff;
}

/* Bottom bar – full-width stripe with centered inner container */
.jedrek-footer__bottom-row {
  width: 100%;
  border-top: 2px solid var(--jedrek-red);
}

.jedrek-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.48);
}

.jedrek-footer__copyright {
  color: rgba(255, 255, 255, 0.48);
}

.jedrek-footer__credit-link {
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.jedrek-footer__credit-link:hover {
  color: #fff;
}

@media (max-width: 1199px) {
  .jedrek-categories__grid,
  .jedrek-process__rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .jedrek-process__item::after {
    display: none;
  }

  .jedrek-brands__grid,
  .jedrek-feature__grid,
  .jedrek-about__grid {
    grid-template-columns: 1fr;
  }

  /* Stack text on top, image below on tablet */
  .jedrek-about__content-wrap {
    padding: 64px clamp(24px, 5vw, 72px);
  }

  /* Stats: 3 columns on tablet, cancel the overlap margin */
  .jedrek-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .jedrek-about__stats-belt {
    margin-top: 0;
  }

  .jedrek-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 991px) {
  .jedrek-header__toggle {
    display: flex;
  }

  .jedrek-header__bar {
    min-height: 84px;
    gap: 16px;
  }

  .jedrek-header__panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px 16px 28px;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .jedrek-header.is-open .jedrek-header__panel {
    display: flex;
  }

  .jedrek-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .jedrek-header__nav .jedrek-menu a {
    font-size: 1.05rem;
  }

  .jedrek-header__actions {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
  }

  .jedrek-hero__slide {
    grid-template-columns: 1fr;
  }

  .jedrek-hero__copy-panel,
  .jedrek-hero__media-panel {
    min-height: auto;
  }

  .jedrek-hero__copy-panel {
    padding: 72px 24px 48px;
  }

  .jedrek-hero__media-panel {
    padding: 48px 0 84px;
  }

  .jedrek-hero .owl-nav {
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
    white-space: nowrap;
    width: 94%;
    top: 50%;
  }

  .jedrek-hero__media-stage--multi {
    grid-template-columns: 1.1fr 1fr;
    grid-template-rows: repeat(2, 165px);
    width: min(92%, 420px);
  }

  .jedrek-categories__grid,
  .jedrek-brands__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jedrek-home section:not(.jedrek-hero) {
    /* padding: 72px 0; */
  }
}

@media (max-width: 767px) {
  .jedrek-section__title,
  .jedrek-hero__copy h1,
  .jedrek-feature__list li {
    font-size: 2.5rem;
  }

  .jedrek-header__brand img,
  .jedrek-footer__brand img {
    max-width: 170px;
  }

  .jedrek-header__search-inner {
    gap: 12px;
  }

  .jedrek-header__search-panel .search-field {
    padding: 10px 50px 10px 15px;
  }

  .jedrek-search-submit {
    position: absolute;
    top: 50%;
    right: 5px;
  }
  .jedrek-categories__grid,
  .jedrek-process__rail,
  .jedrek-brands__logos {
    grid-template-columns: 1fr;
  }

  /* Stats: 2 columns on mobile */
  .jedrek-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jedrek-about__visual,
  .jedrek-about__visual-placeholder,
  .jedrek-feature__visual {
    min-height: 300px;
  }

  .jedrek-about__content-wrap {
    padding: 48px 24px;
  }

  .jedrek-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .jedrek-footer__logo-row {
    padding: 36px 0 28px;
  }

  .jedrek-footer__grid {
    padding: 32px 0 28px;
  }

  .jedrek-footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .jedrek-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .jedrek-hero__media-stage--multi {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 130px);
    width: 88%;
    gap: 12px;
  }

  .jedrek-hero__media-stage--multi img:first-child {
    grid-row: auto;
  }
}

@media (max-width: 480px) {
  /* Stats: single column on small phones */
  .jedrek-stats {
    grid-template-columns: 1fr;
  }

  .jedrek-stat-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .jedrek-stat-card:last-child {
    border-bottom: none;
  }
}

/* Jedrek header refinements */
.jedrek-header {
  overflow: visible;
}

.jedrek-header__brand,
.jedrek-header__panel-brand {
  flex: 0 0 auto;
}

.jedrek-header__bar {
  justify-content: flex-start;
  gap: 100px;
}

.jedrek-header__logo-link {
  max-width: 230px;
}

/* About page */
.jedrek-about-page {
  padding: 34px 0 72px;
  background: #fff;
}

.jedrek-about-page__hero {
    position: relative;
    padding: 36px 42px 48px;
    background: #f3f3f3;
    overflow: hidden;
    border-radius: 6px;
}

.jedrek-about-page__hero::before {
  /* content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(38vw, 320px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(52, 120, 180, 0.18) 72%, rgba(86, 158, 54, 0.18) 100%);
  pointer-events: none; */
}

.jedrek-about-page__hero-grid {
  /* display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: end;
  gap: 32px; */
  /* min-height: 720px; */
}

.jedrek-about-page__hero-copy {
  position: relative;
  z-index: 2;
  padding: 10px 0 10px;
}

.jedrek-about-page__hero-card {
  /* max-width: 600px; */
  /* padding: 36px 34px 34px;
  background: #a6ce39;
  border-radius: 0 36px 0 36px;
  box-shadow: 0 30px 60px rgba(27, 34, 64, 0.14); */
}

.jedrek-about-page__title,
.jedrek-about-page__section-title {
  margin: 0;
  font-size: 36px;
  line-height: 1.05;
  font-family: "Poppins-Medium", sans-serif;
  color: #2d318f;
}

.jedrek-about-page__section-title {
  font-size: 36px;
}

.jedrek-about-page__section-title--light {
  color: #ffffff;
}

.jedrek-about-page__line {
  display: block;
  width: 160px;
  max-width: 100%;
  height: 2px;
  margin: 8px 0 22px;
  background: #ef4f4a;
}

.jedrek-about-page__richtext,
.jedrek-about-page__section-copy {
  font-size: 1rem;
  line-height: 1.55;
  color: #000;
  text-align: justify;
}

.jedrek-about-page__richtext p {
  margin-bottom: 18px;
}

.jedrek-about-page__richtext p:last-child,
.jedrek-about-page__section-copy p:last-child {
  margin-bottom: 0;
}

.jedrek-about-page__richtext--light {
  color: rgba(255, 255, 255, 0.82);
}

.jedrek-about-page__hero-media {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.jedrek-about-page__hero-media img {
  width: 100%;
  max-width: 500px;
  height: 100%;
  max-height: 700px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
}

.jedrek-about-page__stats-shell {
  position: relative;
  margin-top: -72px;
  padding-bottom: 0;
  z-index: 3;
}

.jedrek-about-page__stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: #2f328f;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(24, 34, 87, 0.16);
}

.jedrek-about-page__stat {
  position: relative;
  min-height: 165px;
  padding: 28px 18px 24px;
  text-align: center;
  color: #ffffff;
}

.jedrek-about-page__stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22%;
  right: 0;
  width: 1px;
  height: 56%;
  background: rgba(255, 255, 255, 0.15);
}

.jedrek-about-page__stat-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.jedrek-about-page__stat-value {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1;
  font-weight: 600;
  color: #b7d92d;
}

.jedrek-about-page__stat-value span {
  font-size: 0.72em;
}

.jedrek-about-page__stat p {
  margin: 10px auto 0;
  max-width: 160px;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.jedrek-about-page__vision {
  position: relative;
  padding: 60px 0;
  background-color: #2f328f;
  overflow: hidden;
}

.jedrek-about-page__vision::after {
  content: "";
  position: absolute;
  inset: 18% -10% -5% 42%;
  background:
    repeating-radial-gradient(
      ellipse at center,
      rgba(255, 255, 255, 0.08) 0 2px,
      transparent 2px 16px
    );
  opacity: 0.45;
  pointer-events: none;
}

.jedrek-about-page__vision-grid {
  position: relative;
  z-index: 1;
  display: grid;
}

.jedrek-about-page__vision-content {
  max-width: 100%;
  padding: 8px 0 8px 40px;
}

.jedrek-about-page__vision-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: start;
}

.jedrek-about-page__vision-card {
  max-width: 100%;
}

.jedrek-about-page__vision-card h3 {
  margin: 0;
  font-size: 26px;
  font-weight: normal;
  color: #ffffff;
}

.jedrek-about-page__vision-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  object-fit: contain;
}

.jedrek-about-page__pillars {
  position: relative;
  padding: 110px 0;
  background-color: #f3f3f3;
  overflow: hidden;
}

.jedrek-about-page__pillars::after {
  content: "";
  position: absolute;
  top: 14%;
  right: -6%;
  width: 300px;
  height: 640px;
  background:
    linear-gradient(180deg, rgba(17, 114, 199, 0) 0%, rgba(17, 114, 199, 0.1) 100%);
  clip-path: polygon(32% 0, 100% 0, 62% 100%, 0 100%);
  opacity: 0.25;
  pointer-events: none;
}

.jedrek-about-page__section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.jedrek-about-page__section-head .jedrek-about-page__line {
  margin-left: auto;
  margin-right: auto;
}

.jedrek-about-page__pillars-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.jedrek-about-page__pillar {
  position: relative;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.jedrek-about-page__pillar:nth-child(even) {
  transform: translateY(34px) !important;
}

.jedrek-about-page__pillar-number {
  /* position: absolute;
  top: -54px;
  left: 50%;
  transform: translateX(-50%); */
  font-size: 26px;
  line-height: 1.25;
  color: rgba(34, 46, 116, 0.24);
  font-weight: 300;
  text-align: center;
}

.jedrek-about-page__pillar-top {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  background: #c7e51f;
  box-shadow: 18px 14px 28px rgba(17, 37, 100, 0.12);
}

.jedrek-about-page__pillar-top img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.jedrek-about-page__pillar-body {
  flex: 1;
  padding: 22px 14px 24px;
  background: linear-gradient(180deg, #1172c7 0%, #284a97 54%, #22357d 100%);
  box-shadow: 18px 22px 36px rgba(17, 37, 100, 0.16);
}

.jedrek-about-page__pillar-body h3 {
  margin: 0 0 14px;
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
}

.jedrek-about-page__pillar-body p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.jedrek-about-page__empty-note {
  margin: 0;
  text-align: center;
  color: #56607f;
}

@media (max-width: 1199px) {
  .jedrek-about-page__hero-grid {
    grid-template-columns: 1fr;
  }

  .jedrek-about-page__hero-copy {
    padding-bottom: 48px;
  }

  .jedrek-about-page__hero-media {
    
  }

  .jedrek-about-page__hero-media img {
    max-width: 100%;
    max-height: 520px;
    border-radius: 24px;
  }

  .jedrek-about-page__stats-shell {
    margin-top: 40px;
  }

  .jedrek-about-page__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .jedrek-about-page__vision {
    padding-top: 90px;
  }

  .jedrek-about-page__vision-content {
    padding-left: 0;
  }

  .jedrek-about-page__pillars-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 18px;
  }

  .jedrek-about-page__pillar,
  .jedrek-about-page__pillar:nth-child(2n) {
    transform: none;
    min-height: 350px;
  }
}

@media (max-width: 767px) {
  .jedrek-about-page__hero {
    padding: 48px 0;
  }

  .jedrek-about-page__hero-grid {
    min-height: 0;
    gap: 24px;
  }

  .jedrek-about-page__hero-card {
    padding: 0;
    border-radius: 0 24px 0 24px;
  }

  .jedrek-about-page__hero-media img {
    max-height: 420px;
  }

  .jedrek-about-page__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jedrek-about-page__stat {
    min-height: 145px;
  }

  .jedrek-about-page__stat:nth-child(2n)::after {
    display: none;
  }

  .jedrek-about-page__vision,
  .jedrek-about-page__pillars {
    padding: 30px 0;
  }
.jedrek-about-page__section-title{
    font-size: 30px;
}
  .jedrek-about-page__vision-cards {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .jedrek-about-page__pillars-grid {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }

  .jedrek-about-page__pillar {
    min-height: 0;
  }

  .jedrek-about-page__pillar-number {
    top: -38px;
  }

  .jedrek-about-page__pillar-top {
    min-height: 108px;
  }
  .jedrek-about-page__pillar,
  .jedrek-about-page__pillar:nth-child(2n) {
    min-height: auto;
  }
}

@media (max-width: 575px) {
  .jedrek-about-page__stats {
    grid-template-columns: 1fr;
  }

  .jedrek-about-page__stat::after {
    display: none;
  }

  .jedrek-about-page__hero-copy,
  .jedrek-about-page__vision-content {
    padding: 0;
  }

  .jedrek-about-page__line {
    width: 120px;
  }
}

.jedrek-header__logo-image,
.jedrek-header__logo-svg,
.jedrek-header__logo-svg svg {
  display: block;
  width: 100%;
  max-width: 230px;
  height: auto;
}

.jedrek-header__logo-svg svg {
  max-height: 78px;
}

.jedrek-header__nav {
  flex: 0 1 auto;
  min-width: 0;
}

.jedrek-header__panel {
  flex: 1;
  justify-content: space-between;
  gap: 34px;
}

.jedrek-menu {
  gap: 34px;
}

.jedrek-menu > li {
  position: relative;
}

.jedrek-menu > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 95px;
  gap: 8px;
}

.jedrek-menu > .menu-item-has-children > a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.72rem;
  line-height: 1;
  color: var(--jedrek-red);
  transform: translateY(1px);
}

.jedrek-menu .sub-menu {
  position: absolute;
  top: calc(100% + -2px);
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  gap: 8px 18px;
  min-width: 800px;
  padding: 18px 20px;
  margin: 0;
  background: #fff;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  box-shadow: 0px 1px 5px #999;
}
.jedrek-menu .sub-menu {
    position: absolute;
    top: calc(100% + -5px); /* little space for arrow */
    left: 50%;
    transform: translateX(-50%) translateY(12px);
}

/* Arrow */
.jedrek-menu .sub-menu::before {
    content: "";
    position: absolute;
    top: -10px; /* move above box */
    left: 50%;
    transform: translateX(-50%);
    
    width: 0;
    height: 0;
    
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff; /* same as submenu bg */
    
    z-index: 31;
}
.jedrek-menu .sub-menu::after {
    content: "";
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    
    width: 0;
    height: 0;
    
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 11px solid rgba(0,0,0,0.1);
    
    z-index: 30;
}
.jedrek-menu .sub-menu li {
  width: 100%;
}

.jedrek-menu .sub-menu a {
  display: block;
  padding: 10px 0;
  font-size: 1rem;
  line-height: 1.4;
  border-bottom: 1px solid rgba(28, 31, 38, 0.08);
}

.jedrek-menu .sub-menu li:last-child a,
.jedrek-menu .sub-menu li:nth-last-child(2):nth-child(odd) a {
  border-bottom: 0;
}

.jedrek-menu > .menu-item-has-children:hover > .sub-menu,
.jedrek-menu > .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.jedrek-submenu-toggle,
.jedrek-header__close,
.jedrek-header__panel-head,
.jedrek-header__overlay {
  display: none;
}

@media (max-width: 991px) {
  .jedrek-header__bar {
    justify-content: space-between;
    gap: 16px;
  }
.jedrek-header__panel-head a.header__logo-link img {
    width: 100%;
    max-width: 100px;
}
  .jedrek-header__overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(17, 22, 35, 0.48);
  }

  .jedrek-header.is-open .jedrek-header__overlay {
    display: block;
  }

  .jedrek-header__panel {
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: flex;
    width: 100%;
    max-width: 70vw;
    height: 100%;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
    border: 0;
    box-shadow: -24px 0 50px rgba(18, 26, 62, 0.18);
    transform: translateX(100%);
    transition: transform 0.2s ease-out;
  }

  .jedrek-header.is-open .jedrek-header__panel {
    transform: translateX(0);
  }

  .jedrek-header__panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 28px 24px 22px;
    border-bottom: 1px solid rgba(28, 31, 38, 0.08);
  }

  .jedrek-header__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    padding: 0;
    border: 0;
    background: var(--jedrek-blue);
    color: #fff;
    border-radius: 0;
  }

  .jedrek-header__nav {
    width: 100%;
    padding: 14px 24px 0;
  }

  .jedrek-menu {
    gap: 0;
  }

  .jedrek-menu > li {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid rgba(28, 31, 38, 0.08);
    width: 100%;
  }

  .jedrek-menu > li > a {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    padding: 22px 0;
    font-size: 1.22rem;
    line-height: 1.35;
    font-weight: 500;
    gap: 0;
    min-height: 60px;
  }

  .jedrek-menu > .menu-item-has-children > a::after {
    display: none;
  }

  .jedrek-menu .sub-menu {
    position: static;
    display: none;
    flex: 0 0 100%;
    width: 100%;
    grid-template-columns: 1fr;
    min-width: 0;
    gap: 0;
    padding: 8px 0 16px 0;
    background: rgba(184, 217, 47, 0.06);
    border: 0;
    border-left: 3px solid var(--jedrek-green);
    margin-left: 10px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .jedrek-menu .sub-menu li {
    padding: 0 0 0 18px;
  }

  .jedrek-menu .sub-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px 12px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--jedrek-text);
    border-bottom: 1px solid rgba(184, 217, 47, 0.18);
    transition: color 0.2s ease, padding-left 0.2s ease;
  }

  /* .jedrek-menu .sub-menu a::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--jedrek-green);
    flex-shrink: 0;
  } */

  .jedrek-menu .sub-menu a:hover {
    color: var(--jedrek-red);
    padding-left: 6px;
  }

  .jedrek-menu .sub-menu a:hover::before {
    background: var(--jedrek-red);
  }

  .jedrek-menu .sub-menu li:last-child a {
    border-bottom: 0;
  }

  .jedrek-menu .menu-item-has-children.is-submenu-open > .sub-menu {
    display: grid;
    transform: none;
  }

  .jedrek-submenu-toggle {
    position: relative;
    top: auto;
    right: auto;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 1px solid var(--jedrek-green);
    background: rgba(184, 217, 47, 0.12);
    color: var(--jedrek-text);
    border-radius: 4px;
    transition: background 0.2s ease, border-color 0.2s ease;
  }

  .jedrek-submenu-toggle:hover,
  .jedrek-menu .menu-item-has-children.is-submenu-open > .jedrek-submenu-toggle {
    background: var(--jedrek-green);
    border-color: var(--jedrek-green);
    color: #fff;
  }

  .jedrek-submenu-toggle span {
    position: absolute;
    width: 12px;
    height: 2px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .jedrek-submenu-toggle span:last-child {
    transform: rotate(90deg);
  }

  .jedrek-menu .menu-item-has-children.is-submenu-open > .jedrek-submenu-toggle span:last-child {
    transform: rotate(0);
    opacity: 0;
  }

  .jedrek-header__end {
    display: flex;
    align-items: center;
    gap: 2px;
  }

  .jedrek-header__actions .jedrek-header__search {
    display: none;
  }

  .jedrek-header__actions {
    width: 100%;
    padding: 28px 24px 34px;
    margin-top: auto;
    border-top: 1px solid rgba(28, 31, 38, 0.08);
  }
  
  .search-form{
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .jedrek-search-form label{
    width: 100%;
  }
  .jedrek-catalog__filter-body label{
    width: 100%;
  }
}

@media (max-width: 767px) {
  .jedrek-header__brand img {
    max-width: 150px;
  }

  .jedrek-header__panel-brand img {
    max-width: 160px;
    height: auto;
  }

  .jedrek-header__logo-link,
  .jedrek-header__logo-image,
  .jedrek-header__logo-svg,
  .jedrek-header__logo-svg svg {
    max-width: 150px;
  }


  .jedrek-header__search-inner {
    border-radius: 0px;
  }

  .jedrek-header__panel-head,
  .jedrek-header__nav,
  .jedrek-header__actions {
    padding-left: 20px;
    padding-right: 20px;
  }

  .jedrek-header__panel-head {
    padding-top: 24px;
    padding-bottom: 20px;
  }

  .jedrek-header__search-close,
  .jedrek-search-submit {
    width: 40px;
    height: 40px;
  }

  .jedrek-menu > li > a {
    padding: 20px 0;
    font-size: 1.12rem;
  }

  .jedrek-submenu-toggle {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .jedrek-header__brand img,
  .jedrek-header__panel-brand img {
    max-width: 130px;
    height: auto;
  }

  .jedrek-header__logo-link,
  .jedrek-header__logo-image {
    max-width: 130px;
  }
}

/* Home about stats PSD alignment override */
.jedrek-about {
  overflow: visible;
}
.jedrek-about {
    padding-top: 60px;
}
.jedrek-about .jedrek-stats {
  left: auto;
  bottom: 0;
  width: min(72vw, 960px);
  max-width: none;
  padding: 28px 18px;
  z-index: 2;
}

.jedrek-about .jedrek-stats .row {
  flex-wrap: nowrap;
  margin: 0;
}

/* Final header search dropdown override */
.jedrek-header .container {
  position: relative;
}

.jedrek-header {
  overflow: visible;
}

.jedrek-header__search-panel {
  position: absolute;
  top: calc(100% - 14px);
  right: 0;
  width: min(420px, calc(100vw - 32px));
  padding-top: 14px;
  max-height: none;
  overflow: visible;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 60;
  transform: translateY(-12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.jedrek-header.is-search-open .jedrek-header__search-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.jedrek-header__search-shell {
  background: #fff;
  border: 1px solid rgba(28, 31, 38, 0.12);
  box-shadow: 0 18px 45px rgba(18, 26, 62, 0.12);
  border-radius: 6px;
  overflow: hidden;
}

.jedrek-header__search-inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border-radius: 0;
}

.jedrek-header__search-panel .search-field {
  width: 100%;
  min-width: 0;
  height: 64px;
  padding: 16px 88px 16px 20px;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: var(--jedrek-text);
  font-size: 1.05rem;
  outline: 0;
  transition: box-shadow 0.2s ease;
}

.jedrek-header__search-panel .search-field:focus {
  border-color: transparent;
}

.jedrek-header__search-panel .search-field::placeholder {
  color: var(--jedrek-blue);
  opacity: 1;
}

.jedrek-search-submit {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 100%;
  padding: 0;
  transform: none;
  border: 0;
  border-left: 1px solid rgba(28, 31, 38, 0.12);
  border-radius: 0;
  background: #fff;
  color: var(--jedrek-blue);
  transition: background 0.2s ease, color 0.2s ease;
}

.jedrek-search-submit:hover {
  background: rgba(223, 98, 94, 0.08);
  color: var(--jedrek-red);
  transform: none;
}

.jedrek-header__search-close {
  display: none;
}

@media (max-width: 767px) {
  .jedrek-header__search-panel {
    top: 100%;
    right: 16px;
    left: 16px;
    width: auto;
    padding-top: 0px;
  }

  .jedrek-header__search-shell {
    overflow: hidden;
  }

  .jedrek-header__search-close {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-left: 1px solid rgba(28, 31, 38, 0.12);
    border-radius: 0;
    background: #fff;
    color: var(--jedrek-blue);
    transition: background 0.2s ease, color 0.2s ease;
  }

  .jedrek-header__search-close:hover {
    background: rgba(223, 98, 94, 0.08);
    color: var(--jedrek-red);
    transform: none;
  }
}

.jedrek-about .jedrek-stats .stat-item {
  max-width: 20%;
  padding: 0 12px;
}

.jedrek-about .jedrek-stats .stat-icon {
  height: 24px;
  margin-bottom: 8px;
}

.jedrek-about .jedrek-stats .stat-box h3 {
  font-size: clamp(30px, 2.4vw, 42px);
  margin-bottom: 4px;
}
.jedrek-about .jedrek-stats .stat-box {
    text-align: left;
}
.jedrek-about .jedrek-stats .stat-box p {
  font-size: 13px;
  line-height: 1.25;
  max-width: 175px;
  text-align: left;
  color: #acd037;
  margin: inherit;
}

@media (max-width: 1199px) {
  .jedrek-about .jedrek-stats {
    left: 32px;
    width: calc(100% - 64px);
  }
}

@media (max-width: 991px) {
  .jedrek-about .jedrek-stats {
    left: auto;
    width: 100%;
    margin: 0;
  }

  .jedrek-about .jedrek-stats .row {
    flex-wrap: wrap;
  }

  .jedrek-about .jedrek-stats .stat-item {
    max-width: none;
  }
}


.jedrek-process {
    --process-bg: #fff;
    --process-title: #2c3082;
    --process-line: #e74d41;
    --process-ring: #fff;
    --process-card-size: 170px;
    --process-image-size: 142px;
    --process-dot-size: 14px;
    --process-connector: 20px;
    background: url(../images/perfect-wave.jpg) 0 50% no-repeat;
        background-size: cover;
    padding: 72px 0 48px;
    text-align: center;
    overflow: hidden;
}

.process-small {
    font-family: 'Poppins-Medium', sans-serif;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #000;
}

.process-big {
    margin-top: 8px;
    font-family: 'Poppins-Medium', sans-serif;
    font-size: clamp(38px, 4vw, 42px);
    line-height: 1;
    color: #111111;
    text-transform: uppercase;
}

.process-line {
    width: 346px;
    max-width: 100%;
    height: 2px;
    background: var(--process-line);
    margin: 18px auto 48px;
}

/* ── Process timeline wrapper ──────────────────────── */
/* min needed: 6 × 164px circles + 5 × 42px gaps = 1194px → use 1260px */
.process-wrapper {
    display: grid;
    grid-template-columns: repeat(6, minmax(164px, 1fr));
    align-items: stretch;
    column-gap: 0;
    max-width: 1014px;
    margin: 0 auto;
    overflow: visible;
}

/* ── 3-row grid per item: [label area] [circle] [label area] ── */
/* The circle always lives in the AUTO middle row so every       */
/* circle centre sits at exactly 50 % of the item's height.     */
.process-item {
    display: grid;
    grid-template-rows: 1fr auto 1fr;
    justify-items: center;
    min-height: 260px;
    position: relative;
    z-index: 1;
}

/* ── Label area ─────────────────────────────────────── */
/* is-top: label sits in row-1, flush to the circle below */
.process-item.is-top .process-label-wrap {
    grid-row: 1;
    align-self: end;             /* hug the circle */
    display: flex;
    flex-direction: column-reverse; /* text ↑ — connector ↓ toward circle */
    align-items: center;
    justify-content: flex-start;
    gap: 2px;
}

/* is-bottom: label sits in row-3, flush to the circle above */
.process-item.is-bottom .process-label-wrap {
    grid-row: 3;
    align-self: start;           /* hug the circle */
    display: flex;
    flex-direction: column;      /* connector ↑ toward circle — text ↓ */
    align-items: center;
    justify-content: flex-start;
    gap: 2px;
}

.process-connector {
    width: 2px;
    height: var(--process-connector);
    background: var(--process-line);
    display: block;
}

.process-label {
    max-width: 150px;
    font-family: 'Poppins-Medium', sans-serif;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--process-title);
    margin: 0;
}

.circle-wrap {
    position: relative;
    grid-row: 2;            /* always locked to the middle row */
    width: var(--process-card-size);
    height: var(--process-card-size);
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-wrap::before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 5px solid #bcbdc0;
    border-radius: 50%;
    z-index: 1;
}

.circle {
    position: relative;
    z-index: 2;
    width: var(--process-image-size);
    height: var(--process-image-size);
    border: 15px solid var(--process-ring);
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
}

.circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.circle-accent {
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 5px solid var(--clr);
    border-right-color: transparent;
    z-index: 2;
}

.process-item:first-child .circle-wrap::before,
.process-item:last-child .circle-wrap::before {
    display: none;
}

.dot {
    position: absolute;
    z-index: 3;
    width: var(--process-dot-size);
    height: var(--process-dot-size);
    border: 5px solid var(--clr);
    border-radius: 50%;
    background: #ffffff;
}

.dot1 { top: 2px; left: 50%; transform: translateX(-50%); }
.dot2 { top: 50%; right: 2px; transform: translateY(-50%); }
.dot3 { bottom: 2px; left: 50%; transform: translateX(-50%); }
.dot4 { top: 50%; left: 2px; transform: translateY(-50%); }

.circle-wrap,
.circle,
.circle-accent,
.dot {
    animation-play-state: paused;
}

.process-item:hover .circle-wrap {
    animation: processOrbitSpin 1.8s linear infinite;
}

.process-item:hover .circle {
    animation: processOrbitSpinReverse 1.8s linear infinite;
}

.process-item[data-index="0"] .circle-accent {
    transform: rotate(134deg);
}

.process-item[data-index="1"] .circle-accent {
    transform: rotate(44deg);
}

.process-item[data-index="2"] .circle-accent {
    transform: rotate(0deg);
}

.process-item[data-index="3"] .circle-accent {
    transform: rotate(226deg);
}

.process-item[data-index="4"] .circle-accent {
    transform: rotate(46deg);
}

.process-item[data-index="5"] .circle-accent {
    transform: rotate(315deg);
}
/* VIEW ALL */
.cat-box--view-all {
    background: #f4a000;
}

.cat-box--view-all p {
    color: #fff;
}

.cat-box--view-all img {
    filter: brightness(0) invert(1);
}

.cat-box--view-all:hover {
    background: #d48a00;
}
.process-read {
    display: inline-block;
    margin-top: 40px;
    color: #d43c2f;
    font-family: 'Poppins-Medium', sans-serif;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

@keyframes processOrbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes processOrbitSpinReverse {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/* ── Responsive ─────────────────────────────────────── */

/* Tablet: 3 columns, 2 rows; hide the rail and normalise labels */
@media (max-width: 991px) {
    .jedrek-process {
        --process-card-size: 156px;
        --process-image-size: 130px;
    }

    .process-wrapper {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px 18px;
        max-width: 560px;
    }

    /* Force all labels above their circles on tablet */
    .process-item.is-bottom .process-label-wrap {
        grid-row: 1;
        align-self: end;
        flex-direction: column-reverse;
    }

    .process-item.is-bottom .circle-wrap {
        /* grid-row: 2; */
    }
    .process-item{grid-template-rows: 1fr auto 0;}
}

@media (max-width: 767px) {
    .jedrek-process {

      --process-card-size: 148px;
        --process-image-size: 122px;
        padding: 72px 0;
        background-size: auto !important;
        background-position: left top !important;
    }

    .process-line {
        width: 220px;
        margin-bottom: 48px;
    }

    .process-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 16px;
        max-width: 332px;
    }

    /* Reduce connector height on small screens */
    .process-connector {
        height: 24px;
    }

    .process-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .jedrek-process {
        --process-card-size: 164px;
        --process-image-size: 138px;
    }

    .process-wrapper {
        grid-template-columns: 1fr;
        max-width: 180px;
        gap: 26px 0;
    }

    .process-item,
    .process-item.is-bottom {
        min-height: auto;
    }

    .process-item.is-bottom .process-label-wrap {
        /* grid-row: 3;
        align-self: start;
        flex-direction: column; */
    }
}

/* SECTION */
.jedrek-category {
    background: #a6ce39;
    padding: 80px 0;
    overflow: hidden;
}

/* TITLES */
.cat-small {
    font-size: 20px;
    color: #000;
}

.cat-big {
    font-size: 42px;
    margin: 10px 0;
    text-transform: uppercase;
}

.cat-line {
    width: 140px;
    height: 2px;
    background: #d43c2f;
    margin: 10px auto 50px;
}

/* GRID */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 25px;
    
}

/* BOX */
.cat-item {
    text-decoration: none;
}
.cat-item.cat-item--view-all i{
  margin-bottom: 10px;
}
.cat-box {
    background: #fff;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #2e2f7f;
}

/* ICON */
.cat-box img {
    height: 55px;
    margin-bottom: 10px;
    filter: brightness(0) saturate(100%) invert(29%) sepia(54%) saturate(1259%) hue-rotate(188deg) brightness(91%) contrast(90%);
}

/* TEXT */
.cat-box p {
    font-size: 13px;
    font-weight: 500;
    color: #2957a1;
}

/* HOVER (IMPORTANT) */
.cat-box:hover {
    background: #2e2f7f;
    transform: translateY(-5px) !important;
}

.cat-box:hover p {
    color: #fff;
}

.cat-box:hover img {
    filter: brightness(0) invert(1);
}
.cat-box.cat-box--view-all i.fa-eye {
    font-size: 40px;
    color: #fff;
}
.cat-box.cat-box--view-all {
    min-height: 135px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #2e2f7f;
    color: #fff;
}
.cat-box.cat-box--view-all p, .cat-box.cat-box--view-all i{color: #fff;}
.cat-box.cat-box--view-all:hover i {
    color: #fff;
}

/* tablet */
@media (max-width: 991px) {
    .cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* mobile */
@media (max-width: 576px) {
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.jedrek-smart {
    background: #fff;
    padding: 70px 0;
    background: url(../images/smart-wave.jpg) 0 50% no-repeat;
    background-size: cover;
}

/* WRAPPER */
.smart-header {
    padding: 0px 0 30px;
    max-width: 700px;
}

/* SMALL TITLE */
.smart-header h5 {
    font-size: 16px;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* BIG TITLE */
.smart-header h2 {
    font-size: 42px;
    font-weight: normal;
    color: #000;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
}

/* RED LINE */
.smart-header .line {
    display: block;
    width: 180px;   /* 👈 important (longer like PSD) */
    height: 2px;
    background: #d43c2f;
    margin-top: 18px;
}

/* FULL WIDTH ROW */
.smart-row {
    display: flex;
}

/* IMAGE FULL LEFT */
.smart-image {
    width: 65%;
}

.smart-image img {
    width: 100%;
    display: block;
}

/* RIGHT SIDE BACK INTO GRID */
.smart-content-wrap {
    width: 35%;
    display: flex;
    align-items: center;
}

/* CONTENT */
.smart-content {
    padding-left: 60px;
    max-width: 320px;
}

/* PTMT */
.smart-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
}

/* underline after PTMT */
.smart-content h3::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #d43c2f;
    margin-top: 8px;
}

/* LIST ITEMS */
.smart-content .list {
    font-size: 26px;
    font-weight: 500;
    color: #222;
    padding: 8px 0;
    margin: 0;
    border-bottom: 1px solid #d43c2f;
}

/* DESCRIPTION */
.smart-content .desc {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin-top: 15px;
}

/* BUTTON */
.view-btn {
    display: inline-block;
    margin-top: 15px;
    color: #d43c2f;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}
/* MOBILE FIX */
@media (max-width: 768px) {

    /* HEADER */
    .smart-header {
        padding: 40px 0 20px;
    }

    .smart-header h5 {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .smart-header h2 {
        font-size: 34px;
        line-height: 1.2;
    }

    .smart-header .line {
        width: 120px;
        margin-top: 10px;
    }

    /* STACK LAYOUT */
    .smart-row {
        flex-direction: column;
    }

    /* IMAGE FULL WIDTH */
    .smart-image {
        width: 100%;
    }

    .smart-image img {
        width: 100%;
        height: auto;
    }

    /* RIGHT CONTENT */
    .smart-right {
        width: 100%;
        padding: 20px 0;
    }

    .smart-content {
        padding-left: 0;
    }

    /* TEXT FIX */
    .smart-content h3 {
        font-size: 22px;
    }

    .smart-content .list {
        font-size: 20px;
    }

    .smart-content .desc {
        font-size: 13px;
    }

    .view-btn {
        margin-top: 10px;
    }
}
/* MAIN WRAPPER */
.owl-controls-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 20px;
    position: absolute;
    right: 14%;
    bottom: 100px;
    z-index: 9;
}

/* ARROWS */
.owl-controls-wrap .owl-nav {
    display: flex;
    gap: 18px;
}

.owl-controls-wrap .owl-nav button {
    background: transparent;
    border: none;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    transition: 0.3s;
}

/* HOVER */
.owl-controls-wrap .owl-nav button:hover {
    color: #d43c2f;
}

/* DOTS */
.owl-controls-wrap .owl-dots {
    display: flex;
    gap: 8px;
}

/* DOT STYLE */
.owl-controls-wrap .owl-dot span {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    display: block;
}

/* ACTIVE DOT */
.owl-controls-wrap .owl-dot.active span {
    background: #2e2f7f;
}
.jedrek-brands {
    background: #f3f3f3;
    padding: 80px 0;
    overflow: hidden;
}

/* LAYOUT */
.brands-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* GRID */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex: 1;
}

/* CARD */
.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffff;
    border-radius: 4px;
}

/* IMAGE */
.brand-item img {
    max-width: 100%;
    width: 100%;
    height: 100%;

    object-fit: contain;
    display: block;
}

/* HOVER */
.brand-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* RIGHT CONTENT */
.brands-content {
    width: 300px;
}

.brands-content h5 {
    font-size: 20px;
    color: #000;
}

.brands-content h2 {
    font-size: 42px;
    text-transform: uppercase;
    margin: 5px 0;
}

.brands-content .line {
    display: block;
    width: 120px;
    height: 2px;
    background: #d43c2f;
    margin: 10px 0;
}

.brands-content p {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}
/* TABLET */
@media (max-width: 992px) {

    .brands-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .brands-content {
        width: 100%;
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .brands-content .line{
        margin: 10px auto;
    }
}

/* MOBILE */
@media (max-width: 576px) {

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .brand-item {
        height: 80px;
        padding: 15px;
    }

.brands-content h2 {
        font-size: 32px;
    }
}

/* Contact page */
.jedrek-contact-page {
    padding: 34px 0 72px;
    background: #fff;
}

.jedrek-contact {
    padding: 36px 42px 48px;
    background: #f3f3f3;
    border-radius: 6px;
    overflow: hidden;
}

.jedrek-contact__heading {
    margin-bottom: 34px;
}

.jedrek-contact__heading h1 {
    margin-bottom: 10px;
    color: #1d2430;
    font-size: 36px;
    line-height: 1.05;
    font-family: "Poppins-Medium", sans-serif;
}

.jedrek-contact__line {
    display: block;
    width: 100%;
    max-width: 690px;
    height: 2px;
    margin-bottom: 12px;
    background: #e14d41;
}

.jedrek-contact__heading p {
    max-width: 640px;
    color: #677587;
    font-size: 15px;
    line-height: 1.7;
}

.jedrek-contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 380px);
    gap: 48px;
    align-items: start;
}

.jedrek-contact__info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 34px;
    margin-bottom: 28px;
}

.jedrek-contact__info-card h3 {
    margin-bottom: 10px;
    color: var(--jedrek-red);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
        font-weight: 600;
}

.jedrek-contact__info-card p,
.jedrek-contact__info-copy,
.jedrek-contact__info-copy p {
    margin: 0;
    color: #263140;
    font-size: 14px;
    line-height: 1.7;
}

.jedrek-contact__info-card a {
    color: #263140;
}

.jedrek-contact__info-card a:hover {
    color: #d43c2f;
}

.jedrek-contact__map-frame,
.jedrek-contact__map-placeholder {
    min-height: 350px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(145deg, #dce5ef 0%, #c8d4e1 100%);
    box-shadow: inset 0 0 0 1px rgba(40, 61, 92, 0.08);
}

.jedrek-contact__map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: 0;
    display: block;
}

.jedrek-contact__map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    text-align: center;
}

.jedrek-contact__map-placeholder span {
    max-width: 280px;
    color: #506178;
    font-size: 14px;
    line-height: 1.7;
}

.jedrek-contact__form-card {
    padding: 24px 26px 28px;
    border-top: 3px solid #2e2f7f;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 34px rgba(35, 52, 84, 0.08);
}

.jedrek-contact__form-card h2 {
    margin-bottom: 20px;
    color: #1d2430;
    font-size: 28px;
    font-family: "Poppins-Medium", sans-serif;
}

.jedrek-contact__form-placeholder {
    padding: 20px;
    border-radius: 8px;
    background: #f3f6fa;
}

.jedrek-contact__form-placeholder p {
    margin-bottom: 12px;
    color: #5d6f87;
    font-size: 14px;
    line-height: 1.7;
}

.jedrek-contact__form-placeholder code {
    display: block;
    padding: 14px 16px;
    border-radius: 8px;
    background: #2e2f7f;
    color: #fff;
    font-size: 13px;
    white-space: normal;
    word-break: break-word;
}

.jedrek-contact__form-wrap .wpcf7 form p {
    margin-bottom: 14px;
}

.jedrek-contact__form-wrap .wpcf7 form p:last-of-type {
    margin-bottom: 0;
}

.jedrek-contact__form-wrap label {
    display: block;
    margin-bottom: 6px;
    color: #4b5870;
    font-size: 11px;
    font-family: "Poppins-Bold", sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.jedrek-contact__form-wrap input,
.jedrek-contact__form-wrap select,
.jedrek-contact__form-wrap textarea {
    width: 100%;
    border: 0;
    border-radius: 6px;
    background: #f3f3f3;
    color: #223046;
    font-size: 14px;
    padding: 8px 16px;
    outline: none;
    box-shadow: none;
}

.jedrek-contact__form-wrap textarea {
    height: 180px;
    resize: vertical;
}

.jedrek-contact__form-wrap input::placeholder,
.jedrek-contact__form-wrap textarea::placeholder {
    color: #79879a;
}

.jedrek-contact__form-wrap .wpcf7-form-control-wrap {
    display: block;
}

.jedrek-contact__form-wrap .wpcf7-not-valid-tip {
    margin-top: 6px;
    font-size: 12px;
}

.jedrek-contact__form-wrap .wpcf7-spinner {
    position: absolute;
    margin: 14px 0 0 10px;
}

.jedrek-contact__form-wrap input[type="submit"] {
    min-height: 44px;
    padding: 0 22px;
    border-radius: 6px;
    background: linear-gradient(180deg, #ff3829 0%, #ff220f 100%);
    color: #fff;
    font-size: 18px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jedrek-contact__form-wrap input[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(255, 53, 35, 0.28);
}

.jedrek-contact__form-wrap .wpcf7-response-output {
    margin: 18px 0 0 !important;
    padding: 10px 14px !important;
    border-radius: 6px;
    font-size: 13px;
}

@media (max-width: 1199px) {
    .jedrek-contact__grid {
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 32px;
    }
}

@media (max-width: 991px) {
    .jedrek-contact {
        padding: 28px 24px 34px;
    }

    .jedrek-contact__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
}

@media (max-width: 767px) {
    .jedrek-contact-page {
        padding: 20px 0 48px;
    }

    .jedrek-contact {
        padding: 24px 18px 28px;
    }

    .jedrek-contact__heading {
        margin-bottom: 24px;
    }

    .jedrek-contact__info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .jedrek-contact__form-card {
        padding: 20px 18px 24px;
    }

    .jedrek-contact__form-card h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .jedrek-contact__map-frame,
    .jedrek-contact__map-placeholder,
    .jedrek-contact__map-frame iframe {
        min-height: 240px;
    }
}

section.error-404 {
    text-align: center;
    padding: 200px 0;
    background: #f1f1f1;
}
section.error-404 h2.not-found-text {
    font-size: 160px;
    font-family: 'Raleway';
}
a.goback.button-bin.btn {
    background: #a6ce39;
    color: #fff;
    border-radius: 10px;
    font-weight: 500;
    padding: 12px 30px;
    outline: none;
    border: none;
}
.price-section {
  background: #2f2f86;
  color: #ffffff;
  padding: 40px 20px;
}

.price-container {
  max-width: 900px;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-list li {
  position: relative;
  padding: 10px 0 10px 20px;
  font-size: 17px;
  line-height: 1.5;
  border-bottom: 1px dashed rgba(255,255,255,0.4);
}

/* Green Dot */
.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 12px;
  height: 12px;
  background: #a6d608;
  border-radius: 50%;
}

/* Remove last border */
.price-list li:last-child {
  border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
  .price-list li {
    font-size: 16px;
    padding-left: 30px;
  }

  .price-list li::before {
    width: 10px;
    height: 10px;
    top: 22px;
  }
}

@media (max-width: 480px) {
  .price-section {
    padding: 25px 15px;
  }

  .price-list li {
    font-size: 15px;
    line-height: 1.4;
  }
}

/* search page css */
.jedrek-catalog__filter-body .search-field {
  width: 100%;
  /* min-width: 0; */
  padding: 10px 10px 10px 15px;
  border: 1px solid rgba(52, 54, 146, 0.18);
  border-radius: 999px;
  background: #fff;
  font-size: 1.05rem;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.jedrek-catalog__filter-body .search-submit{
  padding: 10px 20px;
  border: 0;
  border-radius: 100px;
  background: var(--jedrek-blue);
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
  margin-top: 10px;
  display: block;
}
.jedrek-catalog__search-results article{
  padding: 20px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 0px 2px rgb(31 53 84 / 55%);
}
.jedrek-catalog__search-results article img{
  width: 100%;
  max-width: 100%;
  height: auto;
}
.jedrek-catalog__search-results .entry-title{
    padding: .5em 0;
    margin: 0;
    font-size: 1em;
}
.menu-item ._svg {
    filter: brightness(0) saturate(100%) invert(13%) sepia(90%) saturate(2502%) hue-rotate(226deg) brightness(86%) contrast(96%);
}
.menu-item a:hover ._svg{
  filter: brightness(0) saturate(100%) invert(82%) sepia(53%) saturate(7494%) hue-rotate(325deg) brightness(93%) contrast(87%);
}
.topbanner_strip {
  position: relative;
  padding: 20px 0;
}
.topbanner_strip::before {
  content: '';
  position: absolute;
  height: 10px;
  width: 50%;
  top: 0%;
  left: 0%;
  background: #a6ce39;
}
.topbanner_strip::after {
  content: '';
  position: absolute;
  height: 10px;
  width: 50%;
  top: 0%;
  right: 0%;
  background: #2e2f7f;
}

/* ── PROCESS SECTION ──────────────────────────────── */
.jedrek-about-page__process {
  padding: 100px 0;
  background:#0e1455;
  position: relative;
  overflow: hidden;
}

.jedrek-about-page__process::after {
  /*content: "";
  position: absolute;
  inset: 10% -8% -5% 50%;
  background: repeating-radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.06) 0 2px,
    transparent 2px 18px
  );
  pointer-events: none;*/
}

.jedrek-about-page__line--accent {
  background: #c7e51f;
}

.jedrek-about-page__process-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}

.jedrek-about-page__process-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  position: relative;
  min-height: 205px;
  width: 100%;
  padding: 0 24px;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  transition: transform 0.3s ease;
  --about-process-accent: #27c7f3;
}

.jedrek-about-page__process-card:hover {
  transform: translateY(-4px);
}

.jedrek-about-page__process-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -28px;
  bottom: -28px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #79e2ff 0%, #b98cff 100%);
  opacity: 0.9;
  transform: translateX(-50%);
  display: none;
}

.jedrek-about-page__process-card:first-child::before {
  top: 74px;
  display: none;
}

.jedrek-about-page__process-card:last-child::before {
  bottom: 74px;
  display: none;
}

.jedrek-about-page__process-card--image-right {
  --about-process-accent: #9f81eb;
}

.jedrek-about-page__process-card--image-right::before {
  display: none;
}

.jedrek-about-page__process-media {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  flex: 0 0 180px;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  z-index: 1;
}

.jedrek-about-page__process-media::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 5px solid #fff;
  border-radius: 50%;
  z-index: 1;
}

.jedrek-about-page__process-card:first-child  > .jedrek-about-page__process-media:before,
.jedrek-about-page__process-card:last-child  > .jedrek-about-page__process-media:before{
  border: 5px solid #0e1455;
}

.jedrek-about-page__process-circle {
  position: relative;
  z-index: 2;
  width: 140px;
  height: 140px;
  border: 5px solid transparent;
  border-radius: 50%;
  overflow: hidden;
  /* background: #ffffff; */
}

.jedrek-about-page__process-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.jedrek-about-page__process-accent {
  position: absolute;
  inset: 6px;
  z-index: 2;
  border: 5px solid var(--about-process-accent);
  border-right-color: transparent;
  border-radius: 50%;
}

.jedrek-about-page__process-dot {
  position: absolute;
  z-index: 3;
  width: 14px;
  height: 14px;
  border: 4px solid var(--about-process-accent);
  border-radius: 50%;
  background: #ffffff;
}

.jedrek-about-page__process-dot--top {
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
}

.jedrek-about-page__process-dot--right {
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
}

.jedrek-about-page__process-dot--bottom {
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
}

.jedrek-about-page__process-dot--left {
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
}

.jedrek-about-page__process-card[data-index="0"] .jedrek-about-page__process-accent {
  transform: rotate(134deg);
}

.jedrek-about-page__process-card[data-index="1"] .jedrek-about-page__process-accent {
  transform: rotate(44deg);
}

.jedrek-about-page__process-card[data-index="2"] .jedrek-about-page__process-accent {
  transform: rotate(0deg);
}

.jedrek-about-page__process-card[data-index="3"] .jedrek-about-page__process-accent {
  transform: rotate(226deg);
}

.jedrek-about-page__process-card[data-index="4"] .jedrek-about-page__process-accent {
  transform: rotate(46deg);
}

.jedrek-about-page__process-card[data-index="5"] .jedrek-about-page__process-accent {
  transform: rotate(315deg);
}

.jedrek-about-page__process-media,
.jedrek-about-page__process-circle,
.jedrek-about-page__process-accent,
.jedrek-about-page__process-dot {
  animation-play-state: paused;
}

.jedrek-about-page__process-card:hover .jedrek-about-page__process-media {
  animation: processOrbitSpin 1.8s linear infinite;
}

.jedrek-about-page__process-card:hover .jedrek-about-page__process-circle {
  animation: processOrbitSpinReverse 1.8s linear infinite;
}

.jedrek-about-page__process-num {
  position: absolute;
  right: -2px;
  bottom: -2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #6c5bd4;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  pointer-events: none;
  z-index: 2;
}

.jedrek-about-page__process-body {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
  width: 100%;
  max-width: 620px;
  padding: 0;
  background: transparent;
  text-align: left;
}

.jedrek-about-page__process-card--image-right .jedrek-about-page__process-body {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  text-align: right;
}

.jedrek-about-page__process-body h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #b6dc2f;
}

.jedrek-about-page__process-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

/* product table css */
.cpvc-table-wrapper{
    width:100%;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    /* scroll shadow: hint that table scrolls horizontally */
    background:
        linear-gradient(to right, #fff 20%, rgba(255,255,255,0)),
        linear-gradient(to left,  #fff 20%, rgba(255,255,255,0)) 100% 0,
        radial-gradient(farthest-side at 0%   50%, rgba(0,0,0,.15), transparent),
        radial-gradient(farthest-side at 100% 50%, rgba(0,0,0,.15), transparent) 100% 0;
    background-repeat: no-repeat;
    background-color: #fff;
    background-size: 40px 100%, 40px 100%, 12px 100%, 12px 100%;
    background-attachment: local, local, scroll, scroll;
    border-radius: 6px;
}

.cpvc-table{
    border-collapse:collapse;
    table-layout:auto;
    width:100%;
    min-width:700px;
    margin-bottom: 20px;
}
.cpvc-table th,
.cpvc-table td{
    width:auto;
    white-space:nowrap;
}
.cpvc-table thead th{
    background:#1c2b82;
    color:#b8d430;
    padding:10px 8px;
    text-align:center;
    font-size:14px;
    font-weight:500;
    border-right:1px solid rgba(255,255,255,0.3);
}

.cpvc-table thead th:first-child{
    text-align:left;
    border-top-left-radius: 6px;
    /* sticky: row label always visible while scrolling */
    position: sticky;
    left: 0;
    z-index: 2;
    background: #1c2b82;
    box-shadow: 2px 0 4px rgba(0,0,0,.15);
}
.cpvc-table thead th:last-child{
    border-top-right-radius: 6px;
}

.cpvc-table tbody tr:nth-child(odd){
    background:#f1f1f1;
}

.cpvc-table tbody tr:nth-child(even){
    background:#e5e5e5;
}
.cpvc-table tbody tr:last-child{
  border-bottom:1px solid #c7c7c7;
}
.cpvc-table tbody td{
    padding:6px 8px;
    font-size:13px;
    color:#555;
    text-align:center;
    border-right:1px solid #c7c7c7;
}

.cpvc-table tbody td:first-child{
    text-align:left;
    font-weight:500;
    /* sticky: row label always visible while scrolling */
    position: sticky;
    left: 0;
    z-index: 1;
    box-shadow: 2px 0 4px rgba(0,0,0,.08);
}

.cpvc-table tbody tr:nth-child(odd) td:first-child{
    background: #f1f1f1;
}
.cpvc-table tbody tr:nth-child(even) td:first-child{
    background: #e5e5e5;
}

.check{
    color:#9cc31b;
    font-weight:bold;
    font-size:20px;
}

.cross{
    color:#e74c3c;
    font-weight:bold;
    font-size:20px;
}

.cpvc-table th:last-child,
.cpvc-table td:last-child{
    border-right:none;
}

.jedrek-product-page__intro{
	max-width: 100%;
}

@media (max-width: 991px) {
  .jedrek-about-page__process-grid {
    max-width: 100%;
  }
  .jedrek-product-page__summary {
    width: 100%;
    max-width: 100%;
  }
  .jedrek-catalog__filter-body .search-submit{
    margin-top: 0;
  }
  .jedrek-about-page__process-card,
  .jedrek-about-page__process-card--image-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 0;
  }
  .jedrek-about-page__process-card--image-right .jedrek-about-page__process-body,
  .jedrek-about-page__process-body{
    text-align: center;
  }
}
@media(max-width:768px){
    .cpvc-table thead th,
    .cpvc-table tbody td{
        font-size:12px;
        padding:6px 6px;
        width: auto;
    }

    .check,
    .cross{
        font-size:14px;
    }
    
}
@media (max-width: 576px) {
  .jedrek-about-page__process {
    padding: 60px 0;
  }

  .jedrek-about-page__process-card::before,
  .jedrek-about-page__process-card--image-right::before {
    left: 64px;
    right: auto;
    top: -18px;
    bottom: -18px;
    display: none;
  }

  .jedrek-about-page__process-card:first-child::before {
    top: 64px;
  }

  .jedrek-about-page__process-card:last-child::before {
    bottom: 64px;
  }

  /* .jedrek-about-page__process-media {
    flex-basis: 116px;
    width: 116px;
    height: 116px;
  } */

  .jedrek-about-page__process-body {
    max-width: 100%;
  }

  .jedrek-about-page__process-body h3 {
    font-size: 1.15rem;
  }

  .jedrek-about-page__process-body p {
    font-size: 0.88rem;
  }
}
@media(max-width:480px){
    .cpvc-table thead th,
    .cpvc-table tbody td{
        font-size:11px;
        padding:5px 5px;
    }

    .cpvc-table{
        min-width:560px;
    }
    .jedrek-catalog__filter-toggle{
      width: 97%;
    }
}

/* ── END PROCESS SECTION ────────────────────────── */

.jedrek-about-page__empty-note {
  margin: 0;
  text-align: center;
  color: #56607f;
}
