
/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */ 

  --hoockers-green_20: hsla(0, 20%, 38%, 0.2);
  --pale-spring-bud: hsl(60, 68%, 85%);
  --hoockers-green: hsl(0, 20%, 38%);
  --hoockers-green2: hsl(65, 20%, 38%);
  --spanish-gray: hsl(0, 0%, 61%);
  --light-gray: hsl(0, 0%, 80%);
  --cultured-1: hsl(0, 0%, 97%);
  --cultured-2: hsl(60, 6%, 93%);
  --gray-web: hsl(0, 0%, 49%);
  --white_30: hsl(0, 0%, 100%, 0.3);
  --black_70: hsla(0, 0%, 0%, 0.7);
  --black_50: hsla(0, 0%, 0%, 0.5);
  --black_15: hsla(0, 0%, 0%, 0.15);
  --black_10: hsla(0, 0%, 0%, 0.1);
  --black_5: hsla(0, 0%, 0%, 0.05);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);

  /**
   * gradient color
   */

  --gradient: linear-gradient(to right, transparent 50%, var(--white_30) 100%);

  /**
   * typography
   */

  --ff-urbanist: 'Urbanist', sans-serif;

  --fs-1: 4.8rem;
  --fs-2: 4rem;
  --fs-3: 3.4rem;
  --fs-4: 2.4rem;
  --fs-5: 2rem;
  --fs-6: 1.8rem;
  --fs-7: 1.5rem;
  --fs-8: 1.4rem;
  --fs-9: 1.3rem;

  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  /**
   * spacing
   */

  --section-padding: 35px;

  /**
   * shadow
   */

  --shadow-1: 0 8px 16px var(--black_15);
  --shadow-2: 0 4px 10px var(--black_5);

  /**
   * radius
   */

  --radius-3: 3px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --transition-3: 1s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a,
img,
span,
input,
button,
ion-icon { display: block; }

a {
  text-decoration: none;
  color: inherit;
}

img { height: auto; }

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input { width: 100%; }

button { cursor: pointer; }

ion-icon {
  pointer-events: none;
  --ionicon-stroke-width: 25px;
}

html {
  font-family: var(--ff-urbanist);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--gray-web);
  font-size: 1.6rem;
  font-weight: var(--fw-500);
  line-height: 1.6;
}

.hidden {
  display: none;
}

:focus-visible { outline-offset: 4px; }

::-webkit-scrollbar {
  width: 10px;
  height: 5px;
}

::-webkit-scrollbar-track { background-color: hsl(0, 0%, 95%); }

::-webkit-scrollbar-thumb { background-color: hsl(0, 0%, 80%); }

::-webkit-scrollbar-thumb:hover { background-color: hsl(0, 0%, 70%); }





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 15px; }

.section { padding-block: var(--section-padding); }

.has-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.h1,
.h2,
.h3,
.h2-large {
  color: var(--black);
  font-weight: var(--fw-600);
  line-height: 1.3;
}

.h1 {
  font-size: var(--fs-1);
  line-height: 1.2;
}

.h2 { font-size: var(--fs-3); }

.h2-large { font-size: var(--fs-2); }

.h3 { font-size: var(--fs-4); }

.btn {
  font-weight: var(--fw-600);
  max-width: max-content;
  padding: 10px 30px;
  border-radius: var(--radius-3);
  transition: var(--transition-1);
}

.btn-primary,
.btn-secondary:is(:hover, :focus) {
  background-color: var(--black);
  color: var(--white);
}

.btn-primary:is(:hover, :focus) { background-color: var(--hoockers-green); }

.btn-secondary {
  background-color: var(--white);
  color: var(--black);
  box-shadow: var(--shadow-2);
}

.has-scrollbar {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-block-end: 15px;
  margin-block-end: -15px;
  scroll-snap-type: inline mandatory;
}

.has{
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding-block-end: 15px;
  margin-block-end: -15px;
}

.scrollbar-item {
  min-width: 100%;
  scroll-snap-align: start;
}

.has-scrollbar::-webkit-scrollbar-track,
.has-scrollbar::-webkit-scrollbar-thumb { background-color: transparent; }

.has-scrollbar:is(:hover, :focus-within)::-webkit-scrollbar-track {
  background-color: hsl(0, 0%, 98%);
}

.has-scrollbar:is(:hover, :focus-within)::-webkit-scrollbar-thumb {
  background-color: hsl(0, 0%, 70%);
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.hover\:shine { overflow: hidden; }

.hover\:shine .has-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: var(--transition-2);
}

.hover\:shine:is(:hover, :focus) .has-bg-image { transform: scale(1.15); }

.hover\:shine::before {
  top: 0;
  left: -140%;
  bottom: 0;
  width: 100%;
  background-image: var(--gradient);
  transform: skewX(-25deg);
  transition: var(--transition-2);
  z-index: 1;
}

.hover\:shine:is(:hover, :focus-within)::before { animation: shine 1s ease forwards; }

@keyframes shine {
  0% { transform: skewX(-25deg) translateX(0); }
  100% { transform: skewX(-25deg) translateX(250%); }
}

.btn-link {
  color: var(--black);
  font-weight: var(--fw-600);
  display: flex;
  align-items: center;
  gap: 3px;
  transition: var(--transition-1);
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: transparent;
}

.img-cover {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.badge {
  max-width: max-content;
  background-color: var(--hoockers-green);
  color: var(--white);
  font-weight: var(--fw-700);
  padding-inline: 12px;
  border-radius: var(--radius-3);
}

.flex-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.w-100 { width: 100%; }

[data-section] > * {
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-3);
}

[data-section].active > * {
  transform: translateY(0);
  opacity: 1;
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .input-wrapper,
.header-action-btn:not(:first-child),
.navbar { display: none; }

.header {
  position: relative;
  padding-block-end: 95px;
}

.alert {
  background-color: var(--pale-spring-bud);
  color: var(--black);
  font-size: var(--fs-7);
  text-transform: uppercase;
  font-weight: var(--fw-700);
  letter-spacing: 2px;
  text-align: center;
  padding-block: 15px;
}

.header-top {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding-block: 26px;
  z-index: 4;
}

.header-top.active {
  position: fixed;
  top: -110px;
  bottom: auto;
  box-shadow: var(--shadow-1);
  transform: translateY(100%);
  transition: var(--transition-2);
}

.header-top.header-hide {
  box-shadow: none;
  transform: translateY(0);
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.nav-open-btn {
  width: 26px;
  display: grid;
  gap: 6px;
  padding-block: 5px;
}

.nav-open-btn .line {
  height: 2px;
  background-color: var(--black);
}

.nav-open-btn .line-1 { width: 15px; }

.nav-open-btn .line-3 { width: 18px; }

.header-action-btn {
  font-size: 28px;
  transition: var(--transition-1);
}

.header-action-btn:is(:hover, :focus) 
{ color: var(--black_70); 
}






/*-----------------------------------*\
  #MOBILE NAVBAR
\*-----------------------------------*/

.sidebar { z-index: 5; }

.mobile-navbar {
  background-color: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  max-width: 350px;
  width: 100%;
  padding: 25px 40px;
  z-index: 6;
  transform: translateX(-100%);
  visibility: hidden;
  transition: 0.25s var(--cubic-in);
}

.mobile-navbar.active {
  visibility: visible;
  transform: translateX(0);
  transition: 0.4s var(--cubic-out);
}

.mobile-navbar .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-block-end: 55px;
}

.nav-close-btn {
  font-size: 28px;
  color: var(--hoockers-green);
}

.nav-close-btn ion-icon { --ionicon-stroke-width: 40px; }

.mobile-navbar .navbar-link {
  color: var(--black);
  font-size: var(--fs-8);
  text-transform: uppercase;
  font-weight: var(--fw-600);
  letter-spacing: 1px;
  padding-block: 5px;
  transition: var(--transition-1);
}

.mobile-navbar .navbar-link:is(:hover, :focus) { color: var(--hoockers-green); }

.overlay {
  background-color: transparent;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  pointer-events: none;
  transition: var(--transition-1);
}

.overlay.active {
  background-color: var(--black_50);
  pointer-events: all;
}





/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero { 
  padding-block-start: 0; 
  margin-top: 20vh;
}

.hero-card {
  background-color: var(--light-gray);
  padding: 100px 15px;
  background-position: 40%;
}

.hero-text {
  font-size: var(--fs-6);
  margin-block: 16px 30px;
  color: var(--white);
}

.hero .price {
  color: var(--black);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  margin-block-end: 20px;
}

.hero .scrollbar-item { min-width: 100%; }


.hero-title{
  width: 50%;
}

@media(max-width: 800px){
  .hero{
    margin-top: 7vh;
  }

  .hero-card{
    padding: 57px 29px;

  }
}

/*-----------------------------------*\
  #COLLECTION
\*-----------------------------------*/

.collection { padding-block-start: 0; }

.collection-list {
  display: grid;
  gap: 15px;
}

.collection-card {
  background-color: var(--light-gray);
  min-height: 400px;
  padding: 40px;
  padding-block-end: 30px;
  display: flex;
  flex-direction: column;
}

.collection-card .card-title { margin-block-end: 12px; }

.collection-card .card-text {
  color: var(--black);
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
  margin-block-end: auto;
}





/*-----------------------------------*\
  #SHOP
\*-----------------------------------*/

.shop .title-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-block-end: 50px;
}

.shop .btn-link:is(:hover, :focus) { color: var(--hoockers-green); }

.shop-card .card-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shop-card .badge {
  position: absolute;
  top: 20px;
  left: 20px;
}

.shop-card .card-actions {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  display: grid;
  gap: 10px;
  opacity: 0;
  transition: var(--transition-2);
}

.shop-card .action-btn {
  background-color: var(--white);
  font-size: 24px;
  padding: 12px;
  width: 30%;
  border-radius: 20px;
  transition: var(--transition-1);
}

.shop-card .action-btn:is(:hover, :focus) {
  background-color: var(--hoockers-green);
  color: var(--white);
}

.shop-card:is(:hover, :focus-within) .card-actions {
  opacity: 1;
  transform: translate(-20px, -50%);
}

.shop-card .card-content {
  padding-block: 20px;
  text-align: center;
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  
}


.shop-card :is(.price, .card-rating, .rating-wrapper) {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.shop-card .del {
  font-size: var(--fs-9);
  font-weight: var(--fw-400);
}

.shop-card .price .span {
  color: var(--black);
  font-weight: var(--fw-700);
}

.shop-card .card-title {
  color: var(--black);
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
  margin-block-end: 8px;
  transition: var(--transition-1);
}

.shop-card .card-title:is(:hover, :focus) {
  text-decoration: underline;
  color: var(--hoockers-green);
}

.shop-card .rating-wrapper {
  gap: 2px;
  color: var(--hoockers-green);
  font-size: 15px;
}

.shop-card .rating-text {
  font-size: var(--fs-8);
  font-weight: var(--fw-400);
  line-height: 1;
}





/*-----------------------------------*\
  #BANNER
\*-----------------------------------*/

.banner-list {
  display: grid;
  gap: 30px;
}

.banner-card {
  min-height: 420px;
  padding: 30px;
}

.banner-card .card-subtitle {
  color: var(--black);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.banner-card :is(.card-subtitle, .card-title) { text-shadow: 0 0 2px var(--cultured-2); }

.banner-card-1 .card-title { margin-block: 10px 30px; }

.banner-card .card-text {
  color: var(--black);
  font-size: var(--fs-7);
  margin-block: 10px 25px;
}





/*-----------------------------------*\
  #FEATURE
\*-----------------------------------*/

.feature { text-align: center; }

.feature .section-title { margin-block-end: 40px; }

.feature-card .card-icon {
  width: 100px;
  margin-inline: auto;
}

.feature-card .card-title { margin-block: 35px 15px; }

.feature-card .card-text { font-size: var(--fs-7); }





/*-----------------------------------*\
  #OFFER
\*-----------------------------------*/

.offer-banner {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  align-items: center;
  gap: 30px;
  margin-block-end: 60px;
}

.offer-subtitle {
  font-size: var(--fs-7);
  display: flex;
  align-items: center;
  gap: 10px;
}

.offer-subtitle .span {
  color: var(--black);
  text-transform: uppercase;
  font-weight: var(--fw-600);
  letter-spacing: 2px;
}

.offer .badge { font-weight: var(--fw-500); }

.offer .section-title { margin-block: 20px 8px; }

.offer .section-text { font-size: var(--fs-6); }

.offer .countdown {
  color: var(--hoockers-green);
  font-size: var(--fs-2);
  line-height: 1;
  display: flex;
  margin-block: 20px 40px;
}

.offer .time:not(:last-child)::after {
  content: ":";
  color: var(--gray-web);
  font-size: 3rem;
  font-weight: var(--fw-500);
  margin-inline: 10px;
}

.offer .time {
  display: flex;
  align-items: center;
}





/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog { padding-block-end: calc(var(--section-padding) * 2); }

.blog .section-title {
  text-align: center;
  margin-block-end: 40px;
}

.blog-card .card-banner img { transition: var(--transition-2); }

.blog-card:is(:hover, :focus-within) .card-banner img { transform: scale(1.2); }

.blog-card .card-title {
  text-align: center;
  margin-block: 30px 20px;
  transition: var(--transition-1);
}

.blog-card .card-title:is(:hover, :focus) { color: var(--hoockers-green); }

.blog-card .btn-link { justify-content: center; }


/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/



.footer {
  background-color: var(--cultured-1);
  padding-block: 70px;
  
}

.footer .container{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-top {
  display: grid;
  gap: 40px;
}

.footer-list-title {
  color: var(--black);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  margin-block-end: 10px;
}

.footer-list-text { font-size: var(--fs-8); }

.footer-list-text .link {
  display: inline-block;
  color: var(--black);
  font-weight: var(--fw-600);
  text-decoration: underline;
  transition: var(--transition-1);
}

.footer-list-text .link:is(:hover, :focus) { color: var(--hoockers-green); }

.footer-list-text.bold {
  color: var(--black);
  font-weight: var(--fw-800);
  margin-block: 15px 2px;
}

.footer-link {
  font-size: var(--fs-7);
  padding-block: 5px;
}

.footer-link:is(:hover, :focus) { text-decoration: underline; }

.newsletter-title {
  color: var(--black);
  font-size: var(--fs-3);
  font-weight: var(--fw-600);
  line-height: 1.3;
}

.newsletter-text {
  font-size: var(--fs-7);
  line-height: 2;
  margin-block: 10px 35px;
}

.newsletter-form { position: relative; }

.email-field {
  background-color: var(--white);
  font-size: var(--fs-7);
  padding: 12px 18px;
  padding-inline-end: 145px;
  border: 1px solid var(--hoockers-green_20);
  border-radius: var(--radius-3);
  outline: none;
  transition: var(--transition-1);
}

.email-field::placeholder { color: var(--spanish-gray); }

.email-field:focus { border-color: var(--black); }

.newsletter-form .btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}

.copyright { font-size: var(--fs-7); }

.footer-bottom .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin-block-end: 20px;
}

.footer .loga_pat{
  max-width: 50%;
}

.social-list {
  display: flex;
  gap: 20px;
}

.social-link {
  color: var(--black);
  font-size: 18px;
  transition: var(--transition-1);
}

.social-link:is(:hover, :focus) { color: var(--hoockers-green); }

.footer-bottom > img { max-width: max-content; }




/*-----------------------------------*\
  #LOGIN
\*-----------------------------------*/

.login .log_cont{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--black);
}

.login form{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login .search-field{
  font-size: var(--fs-7);
  border: 2px solid var(--hoockers-green_20);
  border-radius: var(--radius-3);
  padding: 10px 20px;
  padding-inline-end: 40px;
  outline: none;
  transition: var(--transition-1);
}

.log_cont 
.mail {
  background-color: var(--pale-spring-bud);
  color: black;
}

.google{
  background-color: var(--hoockers-green);
  color: white;
  display: flex;
  width: 270px;
  align-items: center;
  justify-content: space-around;
}

.google .search-field{
  display: flex;
  width: 100%;
  border: none;
  align-items: center;
  justify-content: space-evenly;
  height: 60px;
  gap: 5px;
}




.login .input-wrapper{
  margin-bottom: 1%;
}

.login .par{
  display: flex;
  flex-direction: row;
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-bottom: 1%;
}

.login .container h1{
  font-size: var(--fs-3);
}


.custom-checkbox {
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 15px;
}


.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  height: 25px;
  width: 25px;
  background-color: var(--black_70);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: var(--hoockers-green);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.login .toggleElement{
  display: none;
}

/*-----------------------------------*\
  #UZIVATEL
\*-----------------------------------*/
#uzivatel .uzivatel{
  height: fit-content;
  display: flex;
  text-align: left;
}

#uzivatel .left{
  width: 25%;
  background-color: var(--cultured-2);
  height: 100vh;
  position: fixed;
  padding-top: 5vh;

}

#uzivatel .right{
  width: 75%;
  color: var(--black);
  padding: 0 2%;
  padding-top: 10vh;
  position: relative;
  left: 25%;
}

.sluzby {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 4%;
}

.sluzby a{
  color: black;
  text-decoration: none;
}

.ad_items {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.2s;
}

.ad_items:hover {
  transform: translateY(-5px);
}

.ad_items .text h2 {
  margin-bottom: 0.5rem;
  font-size: var(--fs-5);
}

.obj{
  background-color: #fde8e6;
}
.obj i {
  font-size: var(--fs-3);
  color: var(--hoockers-green);
}

.prod{
  background-color: rgba(240, 243, 183, 0.933) ;
}
.prod i {
  font-size: var(--fs-3);
  color: var(--hoockers-green2);
}



.flags{
  display: flex;
  flex-direction: row;
  height: 10%;
  gap: 85px;
  align-items: center;
  width: 65%;
}

.flags .custom-checkbox{
  margin-bottom: 0;
}

.flag_single .custom-checkbox .checkmark:after {
  height: 10px;
  width: 5px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.flag_single{
  gap: 10px;
  display: flex;
}

.flag_single .obr{
  max-height: 100%;
}

.flag_single .obr img{
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.obr a{
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding: 2%;
}

.header-top .flags{
  width: 35%;
}

#uzivatel .left .sec{
  color: black;
  display: flex;
  padding: 6%;
  flex-direction: column;
}

#uzivatel .left .sec a{
  font-size: var(--fs-6);
}

.menu-toggle {
  font-size: 30px;
  cursor: pointer;
  margin: 10px;
  color: #333;
  z-index: 0;
  top: 10px;
  left: 10px;
  position: absolute;
  z-index: 3;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: black;
}


@media(min-width: 800px) {
  .menu-toggle {
      display: none;
  }

  .close-btn {
      display: none;
  }
}

@media(max-width: 800px){
  #uzivatel .left {
    width: 80%;
    left: -80%;
    z-index: 4;
    transition: 0.3s;
  }

  .footer .loga_pat{
    max-width: 80%;
  }

}

#uzivatel .left.active {
  left: 0;
}

.sklad .view p{
  color: black;
}

.right h1{
  font-size: var(--fs-3);
}

.right h2{
  font-size: var(--fs-5);
}

.right .view{
  margin-bottom: 10%;
}


.category-group{
  margin: 2% 0;
}

.flex{
  display: flex;
  gap: 2%;
  align-items: center;
}

.right .pass{
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin: 0;
}

.right .view input, .view p{
  width: 40%;
  padding-left: 2%;
  color: var(--hoockers-green);
  border: 1px solid transparent;
}

.right .view input:hover{
  background-color: var(--black_5);;
}

.right .view .cho input{
  width: 100%;
}

.change .view .obr .sale {
  height: auto;
  background-color: var(--hoockers-green);
  color: white;
}

.change .view .obr .sale input{
  color: var(--pale-spring-bud);
  background-color: var(--black_10);
}

.add .view .has-scrollbar{
  width: 50%;
  margin-top: 2%;
}

.add .view .has-scrollbar .scrollbar-item {
  min-width: calc(40% - 20px);
}

.add .change .one_item{
  border-top: 3px solid var(--pale-spring-bud);
  margin-bottom: 2%;
  padding: 1%;
}

.view .form-group{
  display: flex;
  flex-direction: column;
}

.view .form-group select{
  width: 50%;
  padding: 2%;
  margin-bottom: 1%;
}

.view .form-group select:focus{
  border: none;
}

.right .item{
  display: grid;
  width: 80%;
  grid-template-columns: 50% 50%;
  padding-left: 2%;
}

.right .view_p, .right .view_m{
  display: flex;
  align-items: center;
}

.right .view_m{
  margin-top: 4%;
}

.view textarea{
  min-height: 50px;
  width: 50%;
  resize: vertical;
}

.view textarea:focus{
  border:none;
}
.view .nad_textarea{
  height: 150px;
}

.view .nad_textarea textarea{
  padding: 1%;
  min-height: 100%;
}

.editable {
  width: 500px;
  height: auto;
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 20px;
}

.context-menu {
  display: none;
  position: absolute;
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 1000;
}

.context-menu button {
  display: block;
  width: 100%;
  padding: 8px 12px;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
}

.context-menu button:hover {
  background-color: #f0f0f0;
}



.view_p ion-icon, .view_m ion-icon{
  font-size: var(--fs-1);
}

.right .ord{
  border-bottom: 2px solid var(--hoockers-green);
  padding: 2%;
}

.right .items{
  display: flex;
  margin: 0 0 3% 0;
  align-items: flex-start;
}

.right .items .img{
  width: 20%;
  height: 20%;
}

.right .items .img img{
  max-width: 100%;
  height: fit-content;
}

.items input {
  width: 5%;
}

.return .all{
  display: flex;
}


.return .items .img img{
  max-height: 100%;
}
.return .item{
  display: flex;
  flex-direction: column;
}

.return_l{
  width:60%
}

.return_r{
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--pale-spring-bud);
  height: fit-content;
  padding: 2%;
}

/*-----------------------------------*\
  #ADMIN
\*-----------------------------------*/
.main-image-cont{
  width: 50%;
}

.change{
  padding: 2% 2% 0 0;
  border-bottom: 3px solid var(--hoockers-green);
}

.change .obr{
  max-width: 50%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.change .obr img, .change .obr video{
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.change .view{
  margin-bottom: 1%;
}

.change .obr .cho{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--pale-spring-bud);
  padding: 5%;
  height: 100%;
  justify-content: center;
}

.change .obr .cho ion-icon{
  font-size: var(--fs-1);
}

.change .show_upravit{
  display: none;
}

.remove .btn{
  cursor: pointer;
}

.right .add  .view input{
  padding-left: 2px;
}

.right .search-submit {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  font-size: 22px;
}

.right .search-submit ion-icon { --ionicon-stroke-width: 40px; }

.right .input-wrapper {
  position: relative;
  width: 50%;
}

.highlight{
  color: var(--hoockers-green);
}

.doprava_single{
  display: grid;
  grid-template-columns: 1fr 5fr;
  row-gap: 10%;
  align-items: center;
}

.doprava_single input{
  padding: 1%;
  border: 2px solid var(--hoockers-green);
  border-radius: 7px;
  width: 60%;
}

.doprava_single input:focus{
  outline: none;
  background-color: var(--black_5);
}

@media(max-width: 800px){
  .doprava_single{
    gap:2%;
    grid-template-columns: 1fr 2fr;
  } 

  .doprava_single input{
    width: 100%;
  }
}

/*-----------------------------------*\
  #REGISTRACE KURZY
\*-----------------------------------*/
.reg_course .view input{
  width: 80%;
  padding: 1%;
  font-size: var(--fs-5);
}




/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 20px;
  right: 30px;
  background-color: var(--white);
  color: var(--hoockers-green);
  font-size: 22px;
  padding: 13px;
  border-radius: 50%;
  box-shadow: var(--shadow-1);
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-1);
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.back-top-btn:is(:hover, :focus) {
  background-color: var(--hoockers-green);
  color: var(--white);
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}

.nee{
  display: none;
}

@media(max-width:800px){
  
  .log_cont{
    margin-top: 10%;
  }

  .hero-title{
    width:100%;
  }
  .login .input-wrapper{
    margin-bottom: 5%;
  }


  #uzivatel .right{
    width: 100%;
    left: 0;
    top: 5vh;
    z-index: 1;
  }

  #uzivatel .view_p, #uzivatel .view_m{
    flex-direction: column;
  }

  #uzivatel .view textarea{
    width: 100%;
  }

  #uzivatel .view input{
   border: 2px solid var(--black_5);
   margin: 0;
  }

  #uzivatel .view {
    margin-bottom: 5%;
  }

  .right .item{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-left: 0;
    
  }

  .right .item .view{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
   
  }

  .right .view input, .view p{
    padding-left: 0;
    text-align: center;
    
  }

  .ord .view p{
    text-align: left;
  }

 .right  .ord .item .view{
    align-items: flex-start;
  }

  .right  .ord .items .item .view {
    align-items: center;
    text-align: center;
  }
  .right .items{
    margin: 7% 0;
  }
  .right  .ord .items {
    align-items: center;
  }

  .right  .ord .items .img{
    width: 40%;
  }
  .right  .ord .items .item{
    flex-direction: row;
  }
  .right  .ord .items .item .view p{
    text-align: center;
  }

  .right .ord .items{
    flex-direction: column;
  }

  .return .all{
    flex-direction: column;
  }

  .return_l, .return_r{
    width: 100%;
  }

  .right .return .items{
    flex-direction: row;
    gap: 2%;
  }
  .right .change .view input{
    width: 100%;
    text-align: left;
    margin: 2%;
    padding: 2%;
  }

  #uzivatel .view .size-item input{
    border: unset;
    width: unset;
  } 

  .size-item{
    align-items: center;
  }

  .change .obr{
    max-width: 100%;
  }
  
  .add .view .has-scrollbar {
    width: 80%;
  }
  
  .flex{
    width: 100%;
    align-items: center;
    gap: 5px;
  }

  .flex input{
    width: 80%;
  }
}

/*-----------------------------------*\
  #VŠECHNY PRODUKTY
\*-----------------------------------*/
.all_prod{
  display: flex;
  padding: 2%;
  margin-top: 20vh; 
}

.all_prod .right{
  width: 100%;
}

.all_prod .left{
  width: 30%;
  height: 100%;
  color: black;
}

.all_prod .left h3{
  padding-left: 4%;
  font-weight: 500;
  transition: var(--transition-2);
}

.all_prod .left h3:hover{
  color: var(--black_50);
}

.all_prod .left h3:hover .pod_category{
  display: flex;
  flex-direction: column;
}

.subcategories{
  padding-left: 6%;
  display: none;
}


.subcategories.visible {
  display: block;
}

.subcategories h4{
  transition: var(--transition-2);
}

.subcategories h4:hover{
  color: var(--hoockers-green);
}

.all_prod .left h1{
  font-size:var(--fs-4);
}
.all_prod .right h2{
  font-size:var(--fs-3);
}
.all_prod .right .title-wrapper{
  display: flex;
}

.all_prod .right .title-wrapper h1{
  font-size: var(--fs-4);
  color: black;
}

.all_prod .right .title-wrapper .search-submit{
  right: -105px;
}
.all_prod .right .title-wrapper input{
  width: auto;
}
.all_prod .click_all{
  display: none;
}

.all_prod .click_show{
  display: block;
}

.single .left_left_single .has-scrollbar{
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: scroll;
  max-height: 400px;
  direction: rtl; /* This reverses the container's content direction */
}

.single .left_left_single .has-scrollbar > * {
  direction: ltr; /* This corrects the direction of the container's children */
}

.mobile-navbar .flags{
  display: none;
}

@media (max-width:1200px){
  .has{
    grid-template-columns: 1fr 1fr 1fr;
  }
  .nee{
    display:flex;
  }
  .single .right .up .left_single .right_left_single{
    display: none;
  }

  .single .right .up {
    display: flex;
    flex-direction: column;
  }

  .single .right .up .left_single {
    width: 100%;
    display: flex;
  }

  .single .right .up .right_single{
    width:100%;
  }

  .single .right .up .left_single .left_left_single{
    width: 100%;
    height: 400px;
  }

  .obr_scroll{
    max-height: 100%;
    align-items: center;
  }

 .single .right .up .left_left_single img{
    max-height: 100%;
    width: fit-content;
    contain: content;
 }

 .down .container{
  max-width: 100%;
 }

 .down .container .captions{
  width: 90%;
  margin-top: 5%;
 }

 .single .left{
  display: none;
 }

 .single .up .left_single .obr_scroll .obr{
  height: 100%;
 }
 .single .right{
  width: 100%;
 }

 .single .left_left_single .has-scrollbar{
  display: flex;
  gap: 15px;
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-snap-type: inline mandatory;
  flex-direction: row-reverse;
 }

 .single .left_left_single .card-banner{
  height: 400px;
  width: 100%;
}

.single .left_left_single .img-holder{
  background-color: transparent;
}

.header-top .flags {
  width: 26%;
}

.flags {
  display: flex;
  flex-direction: row;
  height: 10%;
  gap: 36px;
}

}



@media (max-width:800px){
  .header-top .flags{
    display: none
  }

  .header{
    top:20px;
  }
  .mobile-navbar .flags{
    display: flex;
    width: 100%;
    gap: 20px;
  }

  .right .flags{
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  
  .has{
    grid-template-columns: 1fr 1fr;
  }

  .all_prod{
    flex-direction: column;
    margin-top: 0vh;
  }

  .all_prod .right,.all_prod .left{
    width: 100%;
    padding: 15px;
  }

  .all_prod .click_all{
    display: block;
    width: 100%;
    border-bottom: 2px solid var(--hoockers-green);
  }

  .all_prod .click_show{
    display: none;
  }

  .all_prod .click_show h1{
    display: none;
  }

  .all_prod .right .title-wrapper{
    margin-top: 10%;
  }

  
  
}

@media(max-width: 550px){
  .has{
    grid-template-columns: 1fr;
  }
}
/*-----------------------------------*\
  #SAMOSTATNÝ PRODUKT
\*-----------------------------------*/
.single .right .up{
  display: flex;
  
}

.single .up .left_single{
  width: 60%;
  display: flex;
}

.single .up .left_single .left_left_single{
  width: 20%;
}

.single .up .left_single .right_left_single{
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.obr_scroll {
  width: 100%;
  height: 400px;
  overflow-y: scroll;
  overflow-x: hidden;
  gap: 30px;
  display: flex;
  flex-direction: column;
  direction: rtl; /* This reverses the container's content direction */
}




.single .up .left_left_single img {
  width: 100%;
  display: block;
  object-fit: contain;
}

.single .up .left_single .obr{
  width: 80%;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single .up .left_single .obr img{
  max-width: 100%;
  height: 100%;
  contain: content;
}

.single .up .right_single{
  width: 40%;
  color: black;
}

.right_single .info .fb{
  color: rgb(46, 46, 146);
}

.right_single .info .like{
  color: rgb(222, 58, 58);
}

.right_single .info p{
  font-size: 2rem;
}

.right .icons a{
  transition: var(--transition-2);
}

.right .icons a:hover{
  color: var(--black_50);
}

.right_single .info .rec{
  color: var(--hoockers-green);
}

.right_single .rating-wrapper{
  display: flex;
  color: var(--hoockers-green);
}

.right_single .info .info_p{
  display: flex;
  gap: 5px;
  align-items: center;
}

.mn_but{
  background-color: var(--hoockers-green);
  color: white;
  border: none;
  padding: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info_p input{
  width: 60px; 
  padding: 10px; 
  text-align: center; 
  border: 2px solid #ccc; 
  border-radius: 5px; 
  font-size: 16px; 
  outline: none; 
  box-sizing: border-box;
}

.info_p .info_p_input{
  position: relative; 
  width: 200px; 
  display: flex; 
  align-items: center;
}

.info_p .info_p_select{
  position: relative; 
  width: 200px;
}

.info_p_select .sel_select{
  width: 100%;
  padding: 10px 35px 10px 15px; 
  border: 2px solid #ccc; 
  border-radius: 5px; 
  font-size: 16px; 
  outline: none; 
  box-sizing: border-box; 
  background-color: white; 
  appearance: none; 
  -webkit-appearance: none; 
  -moz-appearance: none; 
  cursor: pointer;
  margin: 20px;
}

.info_p_select i{
  position: absolute; 
  right: 10px; 
  top: 50%; 
  transform: translateY(-50%); 
  pointer-events: none; 
  color: var(--hoockers-green);
}

.odebrat{
  display: flex;
  align-items: center;
  justify-content: center;
}

.odebra ion-icon{
  margin-right: 5px;
}
.down .captions {
  color: black;
  border-bottom: 2px solid var(--hoockers-green);
  width: 60%;
  margin: 2% 0;

}


.down .captions .info{
  padding-left: 2%;
  display: block;
}

.down .captions .info_p p{
  padding-left: 2%;
}

.down .captions h2{
  font-size: var(--fs-4);
}

@media (max-width: 800px){
  .right_single .info p{
    font-size: 1.8rem;
  }
}
/*-----------------------------------*\
  #KOŠÍK
\*-----------------------------------*/

#kosik{
  color: black;
  margin-top: 20vh;
}

#kosik .view p{
  width: auto;
  color: black;
}

#kosik .info_p{
  display: flex;
  align-items: center;
}

#kosik .icons p{
  transition: 0.5s;
}

#kosik .icons p:hover{
  color: grey;
}

.o_in input, .o_tw input {
  width: 100%;
  padding: 2%;
  border: 2px solid var(--black_15);
  margin: 2% 0;
}

.o_tw{
  display: flex;
  gap: 2%;
}
.o_tw input{
  width: 50%;
}

.pyment{
  width: 100%;
  margin: 3%;
}

#kosik .potvr{
  min-height: 242px;
  background-color: var(--pale-spring-bud);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-around;
  margin-bottom: 5%;
}

/*--navigátor-*/
#kosik .checkout-steps {
  display: flex;
  justify-content: center;
  margin: 40px 0;
  position: relative;
  font-family: Arial, sans-serif;
}

#kosik .step {
  text-align: center;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #999;
  cursor: pointer;
  
}



#kosik .step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px; /* vertikálně vystředěná čára vůči kruhu */
  right: -50%;
  width: 100%;
  height: 2px;
  background-color: #eee;
  z-index: 0;
}

#kosik .step:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -50%;
  width: 100%;
  height: 2px;
  background-color: #eee;
  z-index: 0;
}

#kosik .step .circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  z-index: 1;
  margin-bottom: 5px;

}


#kosik .step.active {
  color: #333;
}

#kosik .step.active .circle {
  background-color: var(--hoockers-green);
  color: white;
}

#kosik .label {
  font-size: 14px;
}

#kosik .step a{
  color: unset;
  text-decoration: unset;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#kosik .return_r .info {
  width: 100%;
}

#kosik .return_r .info  .zb{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background-color: var(--white);
  padding: 2%;
  border-radius: 15px;
}

#kosik .return_r .info .sh{
  display: grid;
  grid-template-columns: 3fr 1fr;
  margin: 10% 0 3% 0;
  padding: 2%;
}

#kosik .return_l .dpr{
  width: 90%;
  border-radius: 15px;
  padding: 2%;
  background-color: var(--black_5);
  display: grid;
  grid-template-columns: 1fr 3fr 1fr 1fr;
  align-items: center;
  justify-items: center;
  margin-bottom: 2%;
}

#kosik .return_l .dpr_udaje{
  width: 90%;
  display: block;
}

#kosik .return_l .dpr_udaje input{
  border: 2px solid var(--black_15);
  padding: 13px;
  width: 100%;
  margin-bottom: 6px;
}

#kosik .return_l .dpr_udaje input:focus{
  border: none;
}

#kosik .return_l .dpr_udaje .dpr_ud_sp{
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 2%;
}

#kosik .return_l .dpr .custom-checkbox{
  margin: 0;
}

#kosik .return_l .dpr .zasilkovna{
  width: 100%;
  display: flex;
  flex-direction: column;
}

#kosik .return_l .dpr .zasilkovna p{
  padding: 0;
}

#kosik .return_l .dpr img{
  max-width: 100%;
}


@media (max-width: 800px){
  #kosik .items{
    flex-direction: column;
  }

  #kosik .info_p{
    justify-content: center;
  }

  #kosik{
    margin-top: 7vh;
  }

  #kosik .return_l .dpr, #kosik .return_l .dpr_udaje{
    width: 100%;
  }

  #kosik .return_l .dpr_udaje .dpr_ud_sp{
    grid-template-columns: 1fr 1fr;
  }
}

header .dop5{
  width: 100%;display: flex;justify-content: center;align-items: center;position: absolute;
    background: #0000000a;height: 24px;z-index: 10;padding: 6px 0;
}

@media (max-width: 1200px){

  #kosik{
    margin-top: 7vh;
  }

  header .dop5{
    display: none;
  }
}
/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/
.blog input{
  width: auto;
}

.blog{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.blog .search-submit{
  display: flex;
  right: 35px;
  align-items: center;
  position: relative;
}

.blog .input-wrapper{
  justify-content: center;
  margin-bottom: 5%;
  display: flex;
}

.blog .text-container{
  text-align: center;
}

.blog_single .section-title{
  text-align: left;
  margin-block-end: 0;
}

.blog_single .container{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 10%;
}

.blog_single .obr {
  display: flex;
  justify-content: center;
  height: 550px;
  width: 100%;
  align-items: center;
}

.blog_single .obr img, .blog_single .obr video{
  max-width: 100%;
  object-fit: contain;
  max-height: 100%;
}

.blog_single .title-wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2%;
}



/*-----------------------------------*\
  #SPECAL PRODUCT
\*-----------------------------------*/
.offer .obr{
  max-width: 100%;
  height: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer .big{
  max-width: 100%;
  height: 100%;
}
.offer .obr img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}


/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 575px screen
 */

@media (min-width: 575px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }

  :is(.header, .hero) .container { max-width: unset; }

  .has-scrollbar { gap: 30px; }

  .scrollbar-item { min-width: calc(50% - 15px); }



  /**
   * HEADER
   */

  .alert { padding-block: 8px; }

  .header-top .container { padding-inline: 30px; }



  /**
   * HERO
   */

  .hero-card { padding-inline: 70px; }

  .hero-text { max-width: 30ch; }



  /**
   * BANNER
   */

  .banner-card .card-text { max-width: 30ch; }



  /**
   * OFFER
   */

  .offer .countdown { --fs-2: 4.8rem; }

  .offer .countdown .time:not(:last-child)::after { margin-inline: 20px; }

}





/**
 * responsive for larger than 800px screen
 */

@media (min-width: 800px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 5.6rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 730px; }

  .flex-item { max-width: calc(50% - 15px); }



  /**
   * COLLECTION
   */

  .collection-card { min-height: 450px; }



  /**
   * BANNER
   */

  .banner-list { grid-template-columns: 1fr 0.7fr; }

  .banner-card { padding: 50px; }



  /**
   * OFFER
   */

  .offer .section-text { max-width: 45ch; }



  /**
   * FOOTER
   */

  

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

 

  .footer-bottom .wrapper { margin-block-end: 0; }

}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * spacing
     */

    --section-padding: 50px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 960px; }

  .scrollbar-item { min-width: calc(33.33% - 20px); }

  .flex-item { max-width: calc(33.33% - 20px); }



  /**
   * COLLECTION
   */

  .collection-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }



  /**
   * BANNER
   */

  .banner-list { grid-template-columns: 1fr 0.5fr; }



  /**
   * OFFER
   */

  .offer .container {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    align-items: center;
    gap: 30px;
  }

  .offer-banner { margin-block-end: 0; }



  /**
   * FOOTER
   */

  .footer .logo { display: block; }

  .footer { padding-block: 100px 80px; }

  .footer-top {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin: 0;
  }

 

  .footer .logo img { width: 190px; }

}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 1300px; }

  .scrollbar-item { min-width: calc(20% - 24px); }



  /**
   * HEADER
   */

  .header .input-wrapper,
  .header-action-btn:not(:first-child),
  .navbar { display: block; }

  .nav-open-btn { display: none; }

  .header {
    padding-block-end: 30px;
    margin-block-end: 10px;
    position: fixed;
    z-index: 5;
    height: unset;
    top: 0;
  }

  .header-top {
    position: unset;
    padding-block: 30px 0;
    height: 20vh;
  }

  .header-top:is(.active, .header-hide) { all: unset; }

  .header-top .container { flex-wrap: wrap; }

  .search-field {
    width: 270;
    font-size: var(--fs-7);
    border: 2px solid var(--hoockers-green_20);
    border-radius: var(--radius-3);
    padding: 10px 20px;
    padding-inline-end: 40px;
    outline: none;
    transition: var(--transition-1);
  }

  .search-field::placeholder { color: var(--spanish-gray); }

  .search-field:focus { border-color: var(--black); }

  .header .input-wrapper { position: relative; }

  .header .search-submit {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 22px;
  }

  .header .search-submit ion-icon { --ionicon-stroke-width: 40px; }

  .header .logo { margin-inline-end: 60px; }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 27%;
    justify-content: flex-end;
  }

  .log{
    width: 30%;
  }

  .log img{
    width: 80%;
  }

  .header-action-btn { position: relative; }

  .header-action-btn .btn-badge {
    position: absolute;
    top: 0;
    right: -10px;
    background-color: var(--black);
    color: var(--white);
    font-size: var(--fs-9);
    min-width: 20px;
    height: 20px;
    display: flex;
    line-height: 1.4;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
  }

  .header-action-btn:last-child {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header-action-btn .btn-text {
    font-size: var(--fs-7);
    font-weight: var(--fw-700);
    margin-block-start: 3px;
  }

  .navbar {
    width: 40%;
    background-color: var(--white);
    padding-block: 18px;
    z-index: 4;
  }

  .navbar .navbar-list {
    display: flex;
    justify-content: center;
    gap: 45px;
    align-items: center;
  }
  }

  .navbar .navbar-link {
    color: var(--black);
    font-size: var(--fs-7);
    font-weight: var(--fw-600);
  }

  .navbar .navbar-link::after {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--black);
    transition: var(--transition-1);
    transform: scaleX(0);
    transform-origin: left;
  }

  .navbar .navbar-link:is(:hover, :focus)::after {
    transform: scaleX(1);
  }

  .header-top.active .navbar {
    position: fixed;
    top: -102px;
    bottom: auto;
    padding-block: 28px;
    box-shadow: var(--shadow-1);
    transform: translateY(100%);
    transition: var(--transition-2);
    width: 100%;
    left: 0;
  }

  .header-top.header-hide .navbar {
    box-shadow: none;
    transform: translateY(0);
  }
  
  .has-mega-menu {
    position: relative;
  }
  
  .mega-menu {
    position: fixed;
    left: 0;
    top: 20vh; /* uprav podle výšky tvého headeru */
    width: 100vw;
    background: white;
    z-index: 1000;
    display: none;
    flex-direction: row;
    padding: 2%;
  }
  
  .mega-menu-column {
    flex: 1;
  }
  
  .mega-menu-column h3 {
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .mega-menu-column ul {
    list-style: none;
    padding: 0;
  }
  
  .mega-menu-column li {
    margin-bottom: 8px;
  }

  
  
  .mega-menu-column a {
    color: #333;
    text-decoration: none;
    transition: 0.3s;
  }

  .mega-menu-column a h3{
    color: var(--spanish-gray);
  }

  .mega-menu-column li a:hover{
    color: var(--spanish-gray);
  }

  
  

  /**
   * HERO
   */



  .hero-text { max-width: 40ch; }



  /**
   * BANNER
   */

  .banner-card-1 .card-title { max-width: 15ch; }



  /**
   * FEATURE
   */

  .feature .section-title { margin-block-end: 60px; }

  .feature .flex-list {
    gap: 100px;
    padding-inline: 50px;
  }

  .feature .flex-item { max-width: calc(33.33% - 66.66px); }



  /**
   * OFFER
   */

  .offer .container { gap: 120px; }

/**
* TABULKA VELIKOSTI ADMIN
*/

.velikosti {
  max-width: 80%;
  background: white;
  overflow: hidden;
}

.right .add .velikosti .table input{
  width: 100%;
}

.row {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 40px;
  gap: 10px;
  padding: 12px 16px;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
}

.row:last-child {
  border-bottom: none;
}

.row input {
  font-size: 14px;
  border: 1px solid #ccc;
  width: 100%;
}

.availability {
  font-weight: bold;
  text-align: center;
}

.available {
  color: green;
}

.unavailable {
  color: red;
}

.remove {
  color: #999;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  user-select: none;
}

.remove:hover {
  color: #e74c3c;
}

.add-row {
  text-align: center;
  padding: 12px;
  background: #f0f0f0;
  cursor: pointer;
  font-weight: bold;
  border-top: 2px solid #ddd;
}

.add-row:hover {
  background: #e0e0e0;
}




/*-------admin-tabuka--------*/
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
th, td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}
th {
  background-color: #f0f0f0;
}

tr:hover {
  background-color: #f1f1f1;
  cursor: pointer;
}

.detail {
  padding: 16px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.detail h3 {
  margin-top: 0;
  font-size: 18px;
}

.detail-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.customer-info,
.items-info {
  flex: 1 1 300px;
  min-width: 250px;
}

.customer-info p,
.items-info p {
  margin: 4px 0;
}

.item {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.item img {
  width: 60px;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}


.item-details {
  font-size: 13px;
}

.action-buttons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  color: white;
  cursor: pointer;
}


.btn-success { background-color: #28a745; }
.btn-warning { background-color: #ffc107; color: black; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

.search-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  max-width: 400px;
  position: relative;
}

.search-field {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  padding-right: 35px; /* Rezervace místa pro ikonu lupy */
}

.search-potvr {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  color: #333;
  cursor: pointer;
  z-index: 1;
}



/*----select kategorií---*/

.selected{ 
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 600px;
}

.menu, .submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  position: absolute;
  background-color: white;
  border: 1px solid #ccc;
  min-width: 180px;
  z-index: 1000;
}

.submenu.open {
  display: block;
}

.menu > li {
  position: relative;
}

.menu > li > a, 
.submenu li a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: black;
  white-space: nowrap;
  cursor: pointer;
}

.menu > li > a:hover, 
.submenu li a:hover {
  background-color: #f0f0f0;
}

.has-sub > a::after {
  content: ">";
  float: right;
  margin-left: 10px;
}

.custom-select.open .menu {
  display: block;
}

.menu li:hover > .submenu {
  display: block;
  top: 0;
  left: 100%;
}

.expand-toggle {
  display: none;
}

@media (max-width: 800px) {
  .menu, .submenu {
    position: static;
    border: none;
    background: none;
    min-width: auto;
  }

  .menu > li, .submenu li {
    border-bottom: 1px solid #eee;
  }

  .submenu {
    padding-left: 20px;
    display: none; /* defaultně zavřené */
  }

  .submenu.open {
    display: block;
  }

  .m_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    height: 40px;
  }

  .expand-toggle {
    display: block;
    cursor: pointer;
    padding: 8px;
    font-size: 16px;
  }
}






/**
*ADMIN PŘIDÁNÍ BARVY VÝBĚR
*/

.custom-select2 {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 600px;
}

.color-options {
  display: none;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 8px 8px;
  background: #fff;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  position: absolute;
  width: 600px;
}

.color-option {
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.color-option:hover {
  background: #f0f0f0;
}

.color-option.selected2 {
  background: #e6f7ff;
  border-left: 4px solid #1890ff;
}

.add .color-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #ccc;
}

.ad_add table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.ad_add th, .ad_add td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

tr:hover {
  background: #f0f8ff;
  cursor: pointer;
}

.color-detail {
  margin-top: 10px;
  padding: 15px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.size-input {
  width: 100%;
  padding: 8px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.add-size-btn {
  padding: 8px 12px;
  background-color: #1890ff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.size-list {
  list-style: none;
  padding: 0;
}

.size-item {
  display: flex;
  justify-content: space-between;
  margin: 5px 0;
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #f9f9f9;
}

.remove-size-btn {
  background: none;
  border: none;
  color: #ff4d4f;
  font-size: 18px;
  cursor: pointer;
}

@media (max-width: 650px) {
  .color-options {
    width: 80%;
  }

  .custom-select2, .color-option {
    padding: 10px;
    font-size: 16px;
  }

  .ad_add th, .ad_add td {
    font-size: 14px;
  }
  .color-detail {
    font-size: 14px;
  }

  .add-size-btn {
    width: 100%;
  }
}


/*-----selector barev pro uživatele---*/

.color-picker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
}

.color-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid var(--black_15);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.color-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.color-circle.selected {
  border: 3px solid #111;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1200px){
  .color-picker{
    justify-content: flex-start;
  }
}

@media (max-width: 800px){
  .color-circle{
    width: 40px;
    height: 40px;
  }
}


/*---mobile version----menu---*/
.mobile_submenu {
  display: none;
  list-style: none;
  padding-left: 20px;
  margin: 5px 0;
}

.has-submenu{
  display: grid; 
  grid-template-columns: 4fr 1fr;
}

.has-submenu > a::after {
  font-size: 0.7em;
}

.has-submenu.active > .mobile_submenu {
  display: block;
}



/*vojty/chatovo css pro stránkování*/
.pagination-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'Segoe UI', sans-serif;
  padding: 1em 0;
}

.dw{
  display: flex;
}
.page-numbers {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-numbers .page,
.page-numbers .dots {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 15px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s, color 0.2s;
}

.page-numbers .page {
  background: #f0f0f0;
  color: #333;
}

.page-numbers .page:hover {
  background: #ae9f9f;
}

.page-numbers .page a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 38px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  border-radius: 50%;
}

.page-numbers .active {
  background: var(--hoockers-green);
  color: white;
  font-weight: 600;
  pointer-events: none;
}

.page-numbers .dots {
  pointer-events: none;
  color: #888;
}

.nav {
  width: 38px;
  height: 38px;
  display: grid;
  justify-content: center;
  border-radius: 50%;
  background: #e0e0e0;
  font-size: 20px;
  color: #333;
  text-decoration: none;
  margin: 0 10px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.nav:hover {
  background: var(--hoockers-green);
  color: white;
}

.nav:disabled,
.nav[style*="pointer-events:none"] {
  background: #cccccc;
  color: #777;
  cursor: not-allowed;
}

.page-input {
  display: flex;
  align-items: center;
  gap: 6px;
}

.page-input form{
  display:flex;
  gap:6px;
  align-items: center;
}
.page-input label {
  font-size: 14px;
  color: #333;
}

.page-input input {
  width: 60px;
  padding: 5px 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.page-input button {
  background: var(--hoockers-green);
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.page-input button:hover {
  background: #005dc1;
}

.podminky{
  margin-top: 15vh ;
  padding:2%;
  color: black;
}


@media(max-width: 800px){

  .podminky{
    margin-top:0 ;
  }
}
