:root {
  --bg-color-header: #f7f7f7;
   --gentell-col : rgb(34,41,179);
  /* --gentell-col: #0069a7; */

  /* --gentell-col: rgb(14, 73, 128); */
  --gentell-col-hover: #002a42;
}


@font-face {
  font-family: Roboto;
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
  src: url("//www.gentell.com/cdn/fonts/roboto/roboto_n4.2019d890f07b1852f56ce63ba45b2db45d852cba.woff2") format("woff2"),
    url("//www.gentell.com/cdn/fonts/roboto/roboto_n4.238690e0007583582327135619c5f7971652fa9d.woff") format("woff");
}


/*


@font-face {
  font-family: 'Inter';
  src: url('/static/font/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/static/font/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/static/font/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

*/


/* Reset + global */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  line-height: 2rem;
  font-size: 1rem;




  background-color: #ffffff;

  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  /* overflow-y: scroll; */

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

}




h1 {
  /* color: #474b49; */

  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}


a {
  text-decoration: none;
  color: #474b49;
}


/* Header + footer */
.topheader {
  position: sticky;
  top: 0;
  /* stick to the top */
  z-index: 1000;
  background-color: var(--bg-color-header);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.topheader img {
  margin-top: 20px;
  margin-bottom: 20px;
  width: 240px;
}

.header-container {
  display: flex;
  justify-content: left;
  align-items: center;
}

.footer {
  background-color: var(--bg-color-header);
  text-align: center;
  padding: 15px 10px;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

/* Main content */
.strip {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.container {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 1fr;
  min-height: 100vh;
  width: 100%;
}



.poist {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  place-items: center;
  /* center each img cell */
  gap: 5px;
  width: 100%;
  margin: 20px 0;
}

.poist>img {
  max-width: 100%;
  /* key: allow shrinking */
  height: auto;
  /* preserve aspect ratio */
  padding: 5px;
  /* border-radius: 5px;
  box-shadow: 0 0 1px rgba(0,0,0,0.3);
  border: 1px solid #b9b9b9;
  background-color: #f8f8f8; */

}


.product-header {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* gap: .5rem; */
}

.product-header>div:last-child {
  background-color: var(--gentell-col);
  padding: 1rem;
  color: #fff;
  border-radius: .5rem;
}

.product-header>div>img {
  width: 100%;
  /* aspect-ratio: 3 / 2; */
  aspect-ratio: 3 / 2;
  /* object-fit: cover; */
  object-fit: contain;
}





.product-header>div>p {
  white-space: pre-line;
  margin-bottom: 0.5rem;
  /* font-size: 0.9rem; */
  line-height: 1.3;
}


.product-header .order-button {
  margin-top: 2rem;
  display: inline-block;
  padding: 12px 28px;
  /* background: linear-gradient(135deg, #ff7a18, #ffb347); */
  /* background-color: var(--gentell-col);
  color: #fff; */
  background-color: #fff;
  color: #000;

  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
  border: none;
}


.product-header .order-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  filter: brightness(1.07);
}

























.product-description {

  padding: 10px;
  /* border: 1px solid var(--gentell-col); */

  margin-bottom: 2rem;

  background-color: #f7f7f7;
  /* 
border-radius: 1rem; */
  box-shadow: 0 0px 3px rgba(0, 0, 0, 0.3);

}



.product-description p {
  margin-top: 10px;
  margin-bottom: 10px;
  white-space: pre-line;


}


.paragraph>h2 {
  margin-bottom: 1rem;
}


.paragraph>p {
  margin-bottom: 1rem;

}


.paragraph>.hero {
  width: 100%;
  margin-bottom: 1rem;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid var(--gentell-col)
}





/* Articles */
.articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 20px;
}

.articles>a {
  user-select: none;
  color: #000;
  background-color: #fff;
  border-radius: 8px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
}

.articles>a div {
  font-weight: bold;
}

.articles>a img {
  width: 100%;
  /* aspect-ratio: 3 / 2; */
  aspect-ratio: 3 / 3;
  /* object-fit: cover; */
  object-fit: contain;
}

.articles>a:hover {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
  transform: translateY(-3px);
}





.rubriky {
  display: flex;
  justify-content: center;
  gap: 2px;
  z-index: 100;
}

/* Buttons */
.rubriky-btn {
  text-decoration: none;
  color: var(--gentell-col);
  font-weight: 600;
  text-transform: uppercase;
  padding-top: 4px;
  padding-bottom: 4px;
  margin-left: 17px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border-bottom: 2px solid #ffffff00;
}

/* Hover effect */
.rubriky-btn:hover {
  color: var(--gentell-col-hover);
  border-bottom: 2px solid var(--gentell-col-hover);
}

/* Active (selected) state */
.rubriky-btn.active {
  background: #ed1c24;
  z-index: 101;
  color: white;
  border-color: #ed1c24;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  cursor: default;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding: 10px 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: var(--gentell-col);
}

.breadcrumb .crumb {
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  color: var(--gentell-col);

}

/* Automatické vloženie / */
.breadcrumb .crumb:not(:last-child)::after {
  content: " / ";
  color: var(--gentell-col);
}

/* Posledná položka – iná farba */
.breadcrumb .crumb:last-child {
  color: var(--gentell-col-hover);

}






.gridview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 0;
  margin-bottom: 2rem;
}

/* SQUARE IMAGE CELL */
.gridview>img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  /* makes each image cell a square */
  object-fit: cover;
  /* fills square fully, no white borders */
  display: block;
}

/* TEXT CELL */
.gridview>div {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gentell-col);
  color: white;
  padding: 1rem;
  text-align: center;


}

.gridview>div>p {
  white-space: pre-wrap;
}




@media (max-width: 1647px) {
  .articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }


}

@media (max-width: 1290px) {
  .articles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }





}


@media (max-width: 900px) {

  .gridview {
    grid-template-columns: 1fr;

  }

  .product-header {
    grid-template-columns: repeat(1, 1fr);
    /* gap: .5rem; */
  }

}


 

.wrapperlogo {
    display: flex;
 
       justify-content: center;
}

.wrapperlogo img  {
   
    width : 300px;
 
}