/*
Theme Name: NEWDTA-VIC
Description: Tema para WordPress.
Author: VIC
Author URI: http://www.facebook.com/vicjunitor
version: 3.0.2
Tags: tema, vic
*/
*{margin:0; padding:0;}
:root {
	--color1: #000;
	--color2: #222;
	--color3: #004410;
	--color4: #C1D784;
	--color5: #D4AF37;
}
body{font: 17px / 28px "Montserrat", sans-serif;color: var(--color2);-webkit-font-smoothing: antialiased;}

html::-webkit-scrollbar {width: 10px;height: 10px;}
html::-webkit-scrollbar-thumb {background: var(--color3);border-radius: 10px;}
html::-webkit-scrollbar-track {background: rgb(0 0 0 / 20%);}
::selection {background-color: var(--color4);color: var(--color1);}
.error h2 {
    text-align: center;
}
img{padding:0; max-width:100%; height:auto;}

.alignleft{float:left;margin:0 10px 10px 0;}
.alignright{float:right;margin:0 0 10px 10px;}
.aligncenter{display:block; margin:0 auto 10px;}

/* links */
a{color:var(--color3); text-decoration:none;transition:0.3s;}
a:hover{color:var(--color1); text-decoration: underline;}

li{list-style: none;}

.body {
    overflow: hidden; /* Inicialmente oculta la barra de desplazamiento */
    transition: overflow 0.5s ease-in-out; /* TransiciÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³n suave cuando cambiamos el overflow */
}

#intro {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background-size: cover;
    transition: opacity 1s ease-in;
}

.logointro {
    background-color: #FFF;
    padding: 20px;
    position: relative;
    z-index: 10;
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 2s ease-in;
    cursor: pointer;
}
#intro{background-size: 100% !important;}
#intro::before,
#intro::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 50%;
    background-color: #FFF;
    opacity: 0;
    transition: opacity 1s ease-in-out, height 1s ease-in-out; /* TransiciÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³n para height */
}

#intro::before {
    left: 0;
    margin-top: -259px;
}

#intro::after {
    right: 0;
    margin-bottom: -259px;
}

#intro.show {
    opacity: 1;
}

#intro.show .logointro {
    opacity: 1;
}
#intro.show .logointro img{width: 100%;}
#intro.show::before {
    width: 50%;
    opacity: 1;
    animation: expandBefore 3s forwards;
}

#intro.show::after {
    width: 50%;
    opacity: 1;
    animation: expandAfter 3s forwards;
}

@keyframes expandBefore {
    0% {
        width: 0;
    }
    100% {
        width: 50%;
    }
}

@keyframes expandAfter {
    0% {
        width: 0;
    }
    100% {
        width: 50%;
    }
}

#intro.expand::before,
#intro.expand::after {
    width: 150%;
    opacity: 1;
    height: 150%; /* Esto hace que se expandan en altura al 100% */

}

#intro.hide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease-out;
}

.introclose {
    opacity: 0;
	visibility: hidden;
    transition: opacity 2s ease-in-out;
}

.introclose.show {
    opacity: 1;
	visibility: visible;
}


/* container */
.container {max-width: 75%;margin: 0 auto;padding:0 10px;box-sizing: border-box;}
header {
    position: absolute;
    width: 100%;
    z-index: 10;
}
header.header{position: sticky;top: 0;z-index: 100;background-color: #FFF;}
#top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 30px 71px;
}

.logo {
    background-color: #FFF;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    margin-top: -30px;
    line-height: 0;
}
.header .logo{margin-top: 0;padding: 0;}
.menuprin {
    color: #FFF;
    cursor: pointer;
}
.header .menuprin{color: var(--color1);}
#sfm-sidebar .sfm-va-middle, #sfm-sidebar .sfm-view-level-1 .sfm-menu {
    display: block !important;
}
#topright {
    display: flex;
    gap: 10px;
}

.lang ul {
    display: flex;
}

.lang li a {
    color: #FFF;
}
.header .lang li a{color: var(--color1);}
.lang li a:hover {
	text-decoration: none;
    color: var(--color5);
}
.lang li {
    padding: 0 10px;
    border-right: 1px solid #FFF;
}
.header .lang li{border-color: var(--color1);}
.header .lang li:first-child{padding-left: 0;}
.lang li:last-child {
    border: none;
}
.user a {
    color: #FFF;
    font-size: 28px;
}
.user a:hover{text-decoration: none;color: var(--color5);}
.header .user a {
    color: var(--color1);
}
#video{width:100%;height:100vh;line-height:0;position:relative}
video{width:100%;height:100%;object-fit:cover}
#video::before{content:"";background:linear-gradient(0deg,rgba(0,0,0,0) 0,#000 100%);position:absolute;left:0;top:0;width:100%;height:300px;z-index:1}
#video::after{content:"";background:linear-gradient(180deg,rgba(0,0,0,0) 0,#000 100%);position:absolute;left:0;bottom:0;width:100%;height:300px;z-index:1}
#pause-button {
    border: 2px solid #FFF;
    width: 60px;
    height: 60px;
    position: absolute;
    right: 80px;
    bottom: 80px;
    z-index: 100;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}
.paused::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-left: 22px solid #ffffff;
    border-bottom: 12px solid transparent;
    z-index: 10;
}
#pause-button:hover {
    background-color: #FFF;
}

#pause-button.paused:hover::before {
    border-left-color: #000;
}

.playing::before, .playing::after{content: "";width: 3px;height: 25px;background-color: #FFF;}

#pause-button.playing {
    gap: 10px;
}
#pause-button.playing:hover::before, #pause-button.playing:hover::after{background-color: #000;}
#slider .owl-dots {
    display: flex;
    align-items: center;
    position: absolute;
    right: 80px;
    bottom: 80px;
    gap: 20px;
}
#slider .owl-dots::before {content: "";width: 90px;height: 1px;background-color: #FFF;}
#slider .owl-dots button {
    width: 10px;
    height: 10px;
    background-color: #FFF;
    border-radius: 50%;
    position: relative;
}
#slider .owl-dots button.active::before {content: ""; width: 4px;height: 4px;position: absolute;border: 2px solid var(--color1);transform: translate(-50%,-50%);border-radius: 50%}
#slider .item{overflow: hidden;}
#slider .item img{width:100%;object-fit:cover;min-height:300px;animation: zoomeffect 30s infinite;}
.conslider {position: absolute;line-height: initial;z-index: 10;top: 50%;transform: translateY(-50%);left: 0;font-size: 16px;padding: 0 7%;font-weight: 300;color: #FFF;box-sizing: border-box;text-shadow: 0 1px 3px #000;}
.conslider h1, .conslider h2 {font: 400 90px/110px "Palanquin Dark", sans-serif;}
.conslider h1 strong, .conslider h2 strong{font-weight: 400;color: var(--color5);}
.conslider p{line-height: 24px;padding-bottom: 25px;}
.conslider p a {font: 700 20px "Libre Baskerville", serif;display: table;margin-top: 50px;padding: 18px 50px;color: #FFF;text-shadow: none;border: 2px solid #FFF;border-radius: 50px;}
.conslider p a:hover {text-decoration: none;background-color: #FFF;color: var(--color1);}
@keyframes zoomeffect{
		0%{
		  transform:scale(1);
		}
		50%{
		  transform:scale(1.1);
		}
		100%{
		  transform:scale(1);
		}
}

#blog {
    position: relative;
    padding: 20px;
    border: 2px solid #D4AF37;
    margin: 120px auto;
    border-radius: 5px;
}
#blog.container{width: 64%;}
.conbox {
    transform: translateY(-50%);
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 0;
    padding: 17px 20px 20px;
    box-sizing: border-box;
    text-align: center;
    width: 100%;
}
#blog img{object-fit: cover;min-height: 330px;opacity: 0.5;}
#blog .item{background-color: var(--color1)}
.conbox h3 {
    max-width: 600px;
    margin: auto auto 40px;
}

.conbox h3 a {
    font: 400 40px / 40px "Palanquin Dark", sans-serif;
    color: #FFF;
}
.conbox h3 a:hover{text-decoration: none;color: var(--color5)}
#blog .details{display: table;margin: auto;color: #FFF;border: 2px solid;border-radius: 50px;padding: 15px 30px;font-size: 20px;line-height: 24px;}
#blog .details:hover{text-decoration: none; background-color: var(--color3);border-color: var(--color3);}
#blog .conbox img {
    vertical-align: sub;
    display: inline-block;
    width: auto;
    min-height: auto;
    opacity: 1;
}
#blog .owl-nav {
    position: absolute;
    bottom: 60px;
    right: 60px;
    display: flex;
    gap: 20px;
}
#blog .owl-nav button{border: 2px solid #FFF;width: 50px;height: 50px;border-radius: 50%;color: #FFF;font-size: 24px;display: flex;align-items: center;justify-content: center;transition: 0.3s;}
#blog .owl-nav button:hover{background-color: #FFF; color: var(--color1);}
#collage{padding: 0 5px}
#collage h2 {
    font: 80px / 80px "Playball", cursive;
    color: var(--color1);
    position: relative;
    text-align: center;
    padding-bottom: 45px;
    margin-bottom: 30px;
}

#collage h2::before {
    content: "";
    background: #FFF url(https://www.baumschule-steiner.at/wp-content/uploads/plant-2.png) no-repeat center;
    width: 70px;
    height: 40px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
#collage h2::after {
    content: "";
    background-color: var(--color4);
    width: 174px;
    height: 1px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.grid {
  display: grid !important;
  grid-gap: 5px;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 30vw;
  list-style: none;
}

.grid li:nth-child(11n + 9) {
  grid-column: 1 / -1;
  grid-row: span 2;
}

.grid figure,
.grid img {
  width: 100%;
  height: 100%;
}
.grid figure{background-color: var(--color1);position: relative;overflow: hidden;}
.grid img {
  object-fit: cover;
  background: #f5f3f4;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.grid li:hover img{opacity:0.5;}
.linkcaption {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 10;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
	transition: 0.3s;
}
.grid li:hover .linkcaption{top: 50%;
    transform: translateY(-50%);}
.linkcaption figcaption {
    font: 700 30px / 34px "Palanquin Dark", sans-serif;
    padding-bottom: 40px;
    color: #FFF;
}
.linkcaption a{display: table;margin: auto;color: #FFF;border: 2px solid;border-radius: 50px;padding: 12px 22px;font-size: 17px;line-height: 20px;}
.linkcaption a:hover{text-decoration: none; background-color: var(--color5);border-color: var(--color5);}
@media (min-width: 850px) {
  .grid {
    grid-gap: 5px;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 12vw;
  }

  .grid li {
    --row-step: calc(4 * var(--n));
  }

  .grid li:nth-child(11n + 1) {
    grid-column: 1;
    grid-row: calc(1 + var(--row-step)) / span 2;
  }

  .grid li:nth-child(11n + 2) {
    grid-column: 2 / span 2;
    grid-row: calc(1 + var(--row-step)) / span 2;
  }

  .grid li:nth-child(11n + 3) {
    grid-column: 4;
    grid-row: calc(1 + var(--row-step));
  }

  .grid li:nth-child(11n + 4) {
    grid-column: 5;
    grid-row: calc(1 + var(--row-step));
  }

  .grid li:nth-child(11n + 5) {
    grid-column: 4;
    grid-row: calc(2 + var(--row-step));
  }

  .grid li:nth-child(11n + 6) {
    grid-column: 5;
    grid-row: calc(2 + var(--row-step)) / span 2;
  }

  .grid li:nth-child(11n + 7) {
    grid-column: 2;
    grid-row: calc(3 + var(--row-step));
  }

  .grid li:nth-child(11n + 8) {
    grid-column: 1;
    grid-row: calc(3 + var(--row-step));
  }

  .grid li:nth-child(11n + 9) {
    grid-column: 3 / span 2;
    grid-row: calc(3 + var(--row-step)) / span 2;
  }

  .grid li:nth-child(11n + 10) {
    grid-column: 1 / span 2;
    grid-row: calc(4 + var(--row-step));
  }

  .grid li:nth-child(11n + 11) {
    grid-column: 5;
    grid-row: calc(4 + var(--row-step));
  }
}
.content.home {
    padding: 120px 0;
    position: relative;
}

.content.home article {
    max-width: 75%;
    margin: auto;
    display: flex;
    gap: 80px;
}

.homeleft {
    width: 54%;
    padding-top: 15px;
}
.homeright {
    width: 46%;
}
.homeright img{width: 100%;}
.content .homeright p{padding:0;line-height: 0;}
.content.home::before {
    content: "";
    background: url(https://www.baumschule-steiner.at/wp-content/uploads/plant-4.png) no-repeat;
    position: absolute;
    left: 0;
    bottom: 7%;
    width: 209px;
    height: 196px;
    opacity: 0.1;
}
.content .homeleft p {
    font-size: 22px;
    line-height: 36px;
}

.content .homeleft p em {
    font: 30px / 38px "Playball", cursive;
    color: var(--color3);
}

.content .homeleft h2 {
    font: 700 50px / 60px "Libre Baskerville", serif;
    color: var(--color1);
    padding-bottom: 25px;
}
.content .homeleft ul {
    margin: 20px 0 0 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.content .homeleft li {
    font-size: 16px;
    font-weight: 600;
    list-style: none;
}

.content .homeleft li a {
    color: var(--color1);
}

.content .homeleft li i {
    font-size: 20px;
    margin-right: 5px;
}

.content .homeleft li img {
    vertical-align: middle;
    margin-right: 10px;
}

.content .homeleft li:last-child a {
    background-color: var(--color3);
    color: #FFF;
    display: block;
    padding: 12px 20px;
    font-weight: 400;
}

.content .homeleft li a:hover {
    text-decoration: none;
    color: var(--color5);
}

.content .homeleft li:last-child a:hover {
    color: #FFF;
    background-color: var(--color5);
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color1);
    font-size: 18px;
    cursor: pointer;
}
.menu-toggle i{
    vertical-align: bottom;
    margin-left: 5px;
}
#menupro{background-color: var(--color3);padding: 25px 20%;position: relative;}
#menupro ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#menupro li {
    padding: 5px 15px;
    font-size: 20px;
    position: relative;
    font-weight: 500;
}

#menupro li a {
    color: #FFF;
}
#menupro li a:hover {
	text-decoration: none;
    color: var(--color4);
}
#menupro li:first-child {
    padding-left: 0;
}
#menupro li:last-child {
    padding-right: 0;
    border: none;
}
#menupro li:before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background-color: #FFF;
}
#menupro li:last-child:before{display: none;}
.searchtop {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
div.is-ajax-search-result {
    padding: 1px !important;
}
.is-search-submit{cursor: pointer;}
.is-ajax-search-post .is-title a {
    font-weight: 600;
    color: var(--color1);
    display: table;
    margin-top: 8px;
}
.is-search-sections {
    display: flex;
    align-items: center;
}

.is-search-sections .meta {
    display: none;
}
.breadcrumb {
    background-color: #f5f5f5;
    padding: 15px 0;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
}

.breadcrumb li {
    padding: 5px;
    font-size: 16px;
    line-height: 24px;
}

.breadcrumb li a {
    color: #444;
}

.breadcrumb li a:hover {
    text-decoration: none;
    color: var(--color5);
}
/* content */
.content{}
.content h1 {
    font: 700 50px "Libre Baskerville", serif;
    color: var(--color1);
    position: relative;
    text-align: center;
    padding-bottom: 50px;
    margin-bottom: 30px;
}

.content h1::before {
    content: "";
    background: #FFF url(https://www.baumschule-steiner.at/wp-content/uploads/plant-2.png) no-repeat center;
    width: 70px;
    height: 40px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.content h1::after {
    content: "";
    background-color: var(--color4);
    width: 174px;
    height: 1px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.content h2{
    padding-bottom: 20px;
}
.content h3{
    padding-bottom: 20px;
}
.content h4{
    color: var(--color1);
    font-size: 20px;
    padding-bottom: 20px;
}
.content p{padding-bottom: 15px;}
.content.page p{text-align: center;padding: 0 10% 20px;}
.content ul, .content ol{margin-left: 30px; padding-bottom: 15px;}
.content li{list-style-type: disc;padding: 5px 0;}
.content ol li{list-style: decimal;}
.content.page article {
    padding: 120px 0 100px;
}
.content.cat {
    padding-top: 100px;
}
    .plant-container {
      position: relative;
      width: 100%;
      margin: 100px auto 0;
      padding: 120px 0;
      background: url(https://www.baumschule-steiner.at/wp-content/uploads/bg.webp);
    }
.plant-container img{
    /* object-fit: cover; */
    /* min-height: 740px; */
}
.plant-container::before, .plant-container::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -100%;
    background: url(https://www.baumschule-steiner.at/wp-content/uploads/bg.webp);
}
.plant-container::after{left: auto;right: -100%;}
    .plant-img {
      width: 100%;
      display: block;
    }
    .dot {
      position: absolute;
      border-radius: 50%;
      display: none;
      opacity: 0;
    }
.dot *{display: none;}
.dot h2{display: table;background-color: var(--color3);color: #FFF;font-size: 15px;line-height: 22px;padding: 10px 20px;border-radius: 10px;cursor: pointer;}
    /* Colores diferentes */
    .dot.dot1 {left: 15%;top: 59%;}
    .dot.dot2 {left: 41%;top: 86%;}
    .dot.dot3 {left: 72%;top: 63%;}
    .dot.dot4 {left: 68%;top: 81%;}
.dot::after{content: "";display: table;width: 36px;height: 36px;margin: 10px auto 0;border-radius: 50%;cursor: pointer;}
.dot.dot1::after {background: var(--color5);}
.dot.dot2::after {background: var(--color4);}
.dot.dot3::after {background: #E8D561;}
.dot.dot4::after {background: #996D33;}

    /* Popup overlay */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      display: none;
      align-items: center;
      justify-content: center;
		z-index: 10;
    }
    .popup {
      background: rgb(255 255 255 / 90%);
      padding: 40px;
      max-width: 550px;
      top: 50%;
      left: 50%;
      overflow-y: auto;
      box-shadow: 0 0 10px rgba(0,0,0,0.3);
      border-radius: 5px;
    }
.popup-content {
    text-align: center;
}

.popup-content h3 {
    font-size: 30px;
    line-height: 40px;
    color: var(--color1);
}

.content .popup-content p {
    text-align: center;
    font-size: 18px;
    line-height: 32px;
    padding: 0 0 20px;
}
    .close-popup {
      font: 700 18px "Libre Baskerville", serif;
      margin: 10px auto 0;
      display: table;
      color: var(--color3);
      padding: 12px 35px;
      border-radius: 30px;
      border: 2px solid var(--color3);
      transition: 0.3s;
      cursor: pointer;
    }
.close-popup:hover{color: #FFF;background-color: var(--color3);}
.conteam {
    padding-top: 110px;
}
.content .conteam p{
    font-size: 22px;
    line-height: 33px;
}
.content .conteam p em{font: 30px / 40px "Playball", cursive;color: var(--color3);}
.conteam h2 {
    font: 80px / 80px "Playball", cursive;
    color: var(--color5);
    position: relative;
    text-align: center;
    padding-bottom: 45px;
    margin-bottom: 30px;
}

.conteam h2::before {
    content: "";
    background: #FFF url(https://www.baumschule-steiner.at/wp-content/uploads/plant-2.png) no-repeat center;
    width: 70px;
    height: 40px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.team h2::after {
    content: "";
    background-color: var(--color4);
    width: 174px;
    height: 1px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.boxteam{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-shadow: 0 0 8px 0 #e5e5e5;
    padding: 20px 40px 0;
    margin-top: 30px;
}
.team {
    width: 48%;
    padding: 20px 0;
}
.team img{width: 100%;}
.content.page .team p {
    font-size: 18px;
    line-height: 28px;
    padding-bottom: 10px;
    padding: 0 0 15px;
}

.content.page .team p strong {
    font-size: 22px;
    line-height: 33px;
}
.btns {
    display: flex;
    justify-content: center;
}
.content .btns p {
    padding: 0 10px 20px;
}
.content .btns p a {
      font: 700 15px "Libre Baskerville", serif;
      margin: 5px 5px 0;
      display: table;
      cursor: pointer;
      color: var(--color3);
      padding: 12px 35px;
      border-radius: 30px;
      border: 2px solid var(--color3);
    }
.content .btns p a:hover{text-decoration: none;color: #FFF;background-color: var(--color3);}
.contentpro {
      position: relative;
      width: 100%;
      margin: 100px auto 0;
      padding: 120px 0 40px;
      background: url(https://www.baumschule-steiner.at/wp-content/uploads/bg.webp);
      display: flex;
      flex-wrap: wrap;
    }
.contentpro::before, .contentpro::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -100%;
    background: url(https://www.baumschule-steiner.at/wp-content/uploads/bg.webp);
}
.contentpro::after{left: auto;right: -100%;}
.content .contentpro h2 {
    font: 700 50px / 60px "Libre Baskerville", serif;
    color: var(--color1);
    padding: 0 0 0 125px;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
}
.content .contentpro h2::before {
    content: "";
    background: url(https://www.baumschule-steiner.at/wp-content/uploads/plant-2.png) no-repeat center;
    width: 70px;
    height: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 50px;
    z-index: 1;
}
.content .contentpro h2::after {
    content: "";
    background-color: var(--color4);
    width: 50px;
    height: 1px;
    position: absolute;
    bottom: 20px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.boxpro {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 70px;
    width: 100%;
}

.selected-post {
    width: 31.333%;
    padding: 10px;
    margin: 1%;
    background-color: #FFF;
    box-sizing: border-box;
    position: relative;
}
.content .selected-post p{text-align: left;padding: 0 0 15px;}
.content .selected-post img{width: 100%;}
.boxselect {
    padding: 10px 10px 50px;
}
.imgselected {
    line-height: 0;
    overflow: hidden;
    background-color: var(--color1);
}

.imgselected a {
    display: block;
    transform: scale(1.01);
}

.selected-post:hover .imgselected a {
    opacity: 0.5;
    transform: scale(1.05);
}
.content .boxselect h3 {
    font-size: 25px;
    line-height: 32px;
    padding: 12px 0;
}
.content .procategory .boxselect h3{text-align: center;}
.content .boxselect h3 a {
    color: var(--color1);
}
.content .boxselect h3 a:hover {
	text-decoration: none;
    color: var(--color3);
}
.content .boxselect p a {
      font: 700 18px "Libre Baskerville", serif;
      display: table;
      cursor: pointer;
      color: var(--color3);
      padding: 12px 35px;
      border-radius: 30px;
      border: 2px solid var(--color3);
      position: absolute;
      bottom: 25px;
    }
.content .procategory p a{left: 50%;transform: translateX(-50%);min-width: 140px;text-align: center;}

.content .boxselect p a:hover{text-decoration: none;color: #FFF;background-color: var(--color3);}
.single.container{max-width: 64%;padding: 120px 10px 100px;}
.content.single ul, .content .boxselect ul{margin: 0;}
.content.single li, .content .boxselect li{list-style: none;position: relative;padding-left: 27px;}
.content.single li::before, .content .boxselect li::before{content: "";position: absolute;background: url(https://www.baumschule-steiner.at/wp-content/uploads/plant-6.png)no-repeat;width: 20px;height: 20px;left: 0;top: 9px;}
.imgprin {
    padding: 20px;
    border: 1px solid var(--color4);
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

.imgprin img {
    object-fit: cover;
    max-height: 600px;
}

.product-item {
    display: flex;
    align-items: center;
    margin: 10px 0;
}
.p1 {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    padding-bottom: 15px;
}
#product-form .p1 label {
    font-size: 20px;
    display: block;
    padding-bottom: 15px;
}

#product-form .p1 input {
    width: auto;
    margin: 0 2px -2px 0;
    appearance: none; /* Elimina el estilo predeterminado */
    width: 16px;
    height: 16px;
    padding: 2px;
    border: 1px solid var(--color2);
    border-radius: 50%;
    position: relative;
    background-color: #fff; /* Color de fondo cuando no estÃƒÂ¡ marcado */
    cursor: pointer;
    transition: all 0.3s ease;
}
#product-form .p1 input:checked{border-color: var(--color2);}
#product-form .p1 input:checked::before{content: '';position: absolute;width: 10px;height: 10px;background-color: var(--color2);top: 50%;left: 50%;transform: translate(-50%, -50%);border-radius: 50%;}


#contact-info {
    font-weight: 500;
    text-align: center;
}

#contact-info p {
    font-size: 18px;
}

#contact-info p a {
    display: inline-block;
    font-size: 15px;
    color: var(--color2);
    background-color: #DEDCDB;
    padding: 10px 20px;
    border-radius: 5px;
}
#contact-info .fa-envelope{font-size: 20px;}

#contact-info i {
    color: var(--color5);
    font-size: 18px;
    vertical-align: text-top;
    transition: 0.3s;
}

#contact-info p a:hover {
    text-decoration: none;
    background-color: var(--color5);
}

#contact-info p a:hover i {
    color: var(--color2);
}

#contact-info blockquote {
    color: #FF567E;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    border: 1px solid;
    display: table;
    margin: 5px auto 20px;
    padding: 5px 10px;
    border-radius: 5px;
}

#uid-form {
    max-width: 280px;
    margin: auto;
    text-align: center;
}

#uid-form input {
    text-align: center;
    margin-bottom: 20px;
}

#uid-form button {
    background-color: var(--color3);
    color: #FFF;
    font: 700 20px "Libre Baskerville", serif;
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    transition: 0.3s;
    cursor: pointer;
    margin-bottom: 20px;
}

#uid-form button:hover {
    background-color: var(--color5);
}
#product-list {padding-bottom: 30px;}

#product-list .product {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 5px 0;
}

#product-list .product img {
    object-fit: contain;
    width: 80px;
    height: 80px;
    border-radius: 10px;
}

#product-form {
    max-width: 700px;
    margin: auto;
}

#uid-form input, #product-form input, #product-form textarea {
    width: 100%;
    border: 1px solid #DDD;
    padding: 15px;
    box-sizing: border-box;
    font: 15px / 18px "Montserrat", sans-serif;
    border-radius: 5px;
}

#product-form label {
    font-size: 15px;
    font-weight: 600;
}
.boxsearch {
    margin: 20px 0;
    padding: 15px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: var(--color5);
    box-sizing: border-box;
}
.content .boxsearch h2 {
    5px: 0;
    padding: 0;
    color: #FFF;
    font-size: 20px;
    font-weight: 600;
}

#product-list .product h3 {
    min-width: 260px;
    font-size: 16px;
    line-height: 24px;
    padding: 0;
}

select.size-select, select.quantity-select {
    padding: 5px;
    width: 120px;
    min-width: 120px;
    border: 1px solid #DDD;
    padding: 5px 10px;
    box-sizing: border-box;
    font-size: 14px;
    border-radius: 5px;
}
select.quantity-select{width: 110px;min-width: 110px;}

#product-form input[type="checkbox"] {
    appearance: none; /* Elimina el estilo predeterminado */
    width: 26px;
    height: 26px;
    border: 1px solid #DDD;
    border-radius: 5px;
    margin: 0;
    position: relative;
    background-color: #fff; /* Color de fondo cuando no estÃƒÂ¡ marcado */
    cursor: pointer;
    transition: all 0.3s ease;
}
#product-form input[type="checkbox"]:checked{background-color: var(--color3);border-color: var(--color3);}
#product-form input[type="checkbox"]:checked::before{content: '✓';position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);font-size: 20px;color: #FFF;}
#additional-form input {
    margin-bottom: 10px;
}

.searchpro {
    right: 10px;
    top: 10px;
    display: flex;
}

#additional-form .searchpro input {
    border-radius: 0;
    font-size: 14px;
    padding: 8px 12px;
    margin: 0;
    width: 195px;
    border-right: none;
}

button#search-btn {
    background-color: #ededed;
    border: 1px solid #DDD;
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: 0.3s;
}

button#search-btn i {
    font-size: 14px;
    color: #666;
}

button#search-btn:hover {
    background-color: #e5e5e5;
}
#product-form button[type="submit"] {
    background-color: var(--color3);
    color: #FFF;
    font: 700 20px "Libre Baskerville", serif;
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    transition: 0.3s;
    cursor: pointer;
    display: table;
    margin: 10px auto 20px;
}

#product-form button[type="submit"]:hover {
    background-color: var(--color5);
}

#pagination{padding-bottom: 30px;}
#pagination button {
    background-color: var(--color5);
    border: none;
    width: 30px;
    height: 30px;
    font-size: 17px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#pagination button:hover {
    background-color: var(--color3);
    color: #FFF;
}
/* Estilos para el popup */
#confirmation-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}
#confirmation-popup .popup{background-color: #FFF;}

.contactweb,.boxnewsletter, .downloads {
      position: relative;
      width: 100%;
      margin: 100px auto 0;
      padding: 120px 0;
      background: url(https://www.baumschule-steiner.at/wp-content/uploads/bg.webp);
    }
.content .contactweb p{padding: 0 0 20px;text-align: left;}
.contactweb::before, .contactweb::after, .boxnewsletter::before, .boxnewsletter::after, .downloads::before, .downloads::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -100%;
    background: url(https://www.baumschule-steiner.at/wp-content/uploads/bg.webp);
}
.contactweb::after,.boxnewsletter::after,.downloads::after{left: auto;right: -100%;}
.boxcontact{
    background-color: #FFF;
    padding: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 40px;
}
.boxcontactleft {
    min-width: 400px;
    padding: 20px;
    border: 1px solid #E6E6E6;
    border-radius: 5px;
    box-sizing: border-box;
}

.boxcontactleft i {
    color: var(--color5);
    position: absolute;
    perspective-origin: 0;
    top: 8px;
    left: 0;
    font-size: 18px;
}
.boxcontactleft i.fa-map-marker-alt{font-size: 19px;width: 22px;text-align: center;}
.content .boxcontactleft ul {
    margin: 0;
}

.content .boxcontactleft li {
    list-style: none;
    position: relative;
    padding-left: 29px;
    font-size: 16px;
}

.content .boxcontactleft p em{font: 20px / 30px "Playball", cursive;color: var(--color3);}

.content .boxcontacright h2 {
    font: 700 50px / 60px "Libre Baskerville", serif;
    color: var(--color1);
    padding-bottom: 25px;
    border-bottom: 1px solid var(--color4);
    display: table;
    margin: auto auto 40px;
    padding-bottom: 5px;
}
.boxcontacright label {
    font-size: 15px;
    font-weight: 600;
}
.boxcontacright input, .boxcontacright textarea, .boxnewsletter input {
    width: 100%;
    border: 1px solid #DDD;
    padding: 15px;
    box-sizing: border-box;
    font: 15px / 18px "Montserrat", sans-serif;
    border-radius: 5px;
}

.boxcontacright form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.boxcontacright.frminfo {
    max-width: 630px;
    margin: auto;
}
.boxcontacright.frminfo form{display: none;}
.bloform1 {
    width: 49%;
    padding-bottom: 10px;
}

.bloform2 {
    width: 100%;
    padding-bottom: 10px;
}
.boxcontacright button,.boxnewsletter button {
    background-color: var(--color3);
    color: #FFF;
    font: 700 20px "Libre Baskerville", serif;
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    transition: 0.3s;
    cursor: pointer;
    margin: auto;
}

.boxcontacright button:hover, .boxnewsletter button:hover {
    background-color: var(--color5);
}

.disclaimer {padding-top: 120px;120px:;120px: 0;}

.content .disclaimer h2 {
    font: 700 50px / 60px "Libre Baskerville", serif;
    color: var(--color1);
    padding: 0 0 0 125px;
    margin-bottom: 30px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}
.content .disclaimer h2::before {
    content: "";
    background: url(https://www.baumschule-steiner.at/wp-content/uploads/plant-2.png) no-repeat center;
    width: 70px;
    height: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 50px;
    z-index: 1;
}
.content .disclaimer h2::after {
    content: "";
    background-color: var(--color4);
    width: 50px;
    height: 1px;
    position: absolute;
    bottom: 20px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.content .disclaimer p{padding: 0 0 20px;text-align: left;}

.boxnewsletter form{max-width: 500px;background-color: #FFF;padding: 40px;border-radius: 10px;display: flex;align-items: center;margin: auto;gap: 20px;}
.boxnewsletter button{
    border-radius: 5px;
}

.downloads {
    display: flex;
    flex-wrap: wrap;
    padding: 110px 0;
    margin-bottom: 20px;
}
.content .downloads p{padding: 0 0 10px;}
.boxdownloads {
    width: 31.3333%;
    padding: 10px 10px 60px;
    margin: 1%;
    background-color: #FFF;
    box-sizing: border-box;
    position: relative;
}
.boxdownloads a {
      font: 700 18px "Libre Baskerville", serif;
      margin: auto;
      display: table;
      color: var(--color3);
      padding: 12px 35px;
      border-radius: 30px;
      border: 2px solid var(--color3);
      transition: 0.3s;
      cursor: pointer;
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
    }
.boxdownloads a:hover{text-decoration: none;color: #FFF;background-color: var(--color3);}

.content .boxdownloads h2 {
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 20px;
    line-height: 28px;
    color: #FFF;
    background-color: var(--color3);
}

.navigation {
    width: 100%;
    margin-top: 50px;
}

.content .navigation ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Links y números */
.content .navigation li{list-style: none;}
.content .navigation li a,
.content .navigation li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(0,0,0,0.15);
    text-decoration: none;
    font-size: 15px;
    color: var(--color2, #222);
    background: #fff;
    transition: all 0.25s ease;
}

/* Hover */
.content .navigation li a:hover {
    background: var(--color3, #004410);
    color: #fff;
    border-color: var(--color3, #004410);
}

/* Página activa */
.content .navigation li.active a {
    background: var(--color3, #004410);
    color: #fff;
    border-color: var(--color3, #004410);
    font-weight: 600;
    cursor: default;
}

/* Anterior / Siguiente */
.content .navigation li.prevPost a,
.content .navigation li.nextPost a {
    padding: 0 18px;
    font-weight: 500;
}

/* Texto "Página X de Y" */
.content .navigation li.totalPage {
    border: none;
    padding: 0 15px;
    font-size: 14px;
    color: #666;
    white-space: nowrap;
}

/* Puntos suspensivos */
.content .navigation li.dots {
    border: none;
    font-size: 18px;
    padding: 0 6px;
    color: #888;
}

.content .gallery-item img {
    border: 1px solid var(--color4) !important;
    padding: 5px;
    box-sizing: border-box;
}

.content .gallery-item {
    margin: 0.2% !important;
    width: 19.6% !important;
}

.content .gallery {
    line-height: 0;
    margin: 0 0 20px !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

footer {
    background-color: var(--color1);
    padding-top: 120px;
    color: #FFF;
}

footer .container {
    display: flex;
    flex-wrap: wrap;
}

footer h3 {
    font: 700 20px "Libre Baskerville", serif;
    color: var(--color5);
    padding-bottom: 15px;
}

footer p {
    font-size: 15px;
    padding-bottom: 15px;
    min-height: 56px;
}

.newsletter, .location, .social {
    width: 32%;
    padding-bottom: 30px;
}
.newsletter{width: 26%;}
.newsletter a, .location a {
    font: 700 17px "Libre Baskerville", serif;
    display: table;
    color: #FFF;
    background-color: var(--color5);
    padding: 20px 30px;
    border-radius: 5px;
}

.newsletter a:hover, .location a:hover {
    text-decoration: none;
    background-color: var(--color3);
}

.social ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social li a {
    background-color: var(--color4);
    color: var(--color1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 5px;
}

.social li a:hover {
    text-decoration: none;
    background-color: var(--color3);
    color: #FFF;
}

.location {
    padding: 0 30px;
    box-sizing: border-box;
    width: 42%;
}
.footer2 {
    display: flex;
    align-items: center;
    gap: 70px;
}
.links ul {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 20px;
}

.links li {
    padding: 0 15px;
    font-size: 16px;
    position: relative;
}

.links li a {
    color: #FFF;
}
.links li a:hover {
	text-decoration: none;
    color: var(--color4);
}
.links li:first-child {
    padding-left: 0;
}
.links li:last-child {
    padding-right: 0;
}
.links li:before {
    content: "";
    position: absolute;
    right: 0;
    top: 7px;
    width: 1px;
    height: 16px;
    background-color: #FFF;
}
.links li:last-child:before{display: none;}



.links p {
    min-height: auto;
    padding-bottom: 5px;
    font-size: 14px;
}

.links i {
    color: var(--color4);
}
.links i.fa-map-marker-alt{font-size: 16px;}
.links p strong {
    font-weight: 400;
    padding-right: 20px;
}
.links p a{color: #FFF;}
.links p a:hover{text-decoration: none;color: var(--color5);}

#copy {
    padding: 20px;
    width: 100%;
    text-align: center;
    border-top: 1px solid #393939;
    margin-top: 35px;
    font-size: 14px;
}

/* 1600px ↑ */
@media (min-width: 1600px){
  /* Limita ancho máximo real para legibilidad */
  .container{max-width: 1320px;}

  /* Secciones que estaban en % y en 4K quedan gigantes */
  #blog.container{width: auto; max-width: 1200px;}

  /* Ajuste fino de hero para que no se vea “vacío” */
  .conslider{padding: 0 6%;}
}

/* 1920px ↑ (FullHD+ / 2K / 4K) */
@media (min-width: 1920px){
  .container{max-width: 1400px;}

  /* Tipografías grandes: sube un poco para que se vea proporcional */
  .conslider h1, .conslider h2{
    font-size: 96px;
    line-height: 116px;
  }

  /* Botones y controles un poco más grandes */
  #pause-button{width: 70px; height: 70px; right: 90px; bottom: 90px;}
  .playing::before, .playing::after{height: 30px;}
  .paused::before{border-top: 14px solid transparent; border-left: 26px solid #fff; border-bottom: 14px solid transparent;}

  #slider .owl-dots{right: 90px; bottom: 90px; gap: 22px;}
  #slider .owl-dots::before{width: 110px;}

  /* Home */
  .content.home article{max-width: 1400px;}
  .content .homeleft h2{font-size: 56px; line-height: 68px;}
  .content .homeleft p{font-size: 24px; line-height: 38px;}
}

/* 2560px ↑ (4K típico en escritorio / ultrawide) */
@media (min-width: 2560px){
  .container{max-width: 1560px;}

  /* Evita textos excesivamente anchos en páginas internas */
  .single.container{max-width: 1400px;}

  /* Blog en portada más “premium” sin estirarse infinito */
  #blog.container{max-width: 1300px;}
}

@media (max-width: 1600px){
.dot.dot1 {left: 11%;top: 59%;}
    .dot.dot2 {left: 40%;top: 86%;}
    .dot.dot3 {left: 76%;top: 63%;}
    .dot.dot4 {left: 70%;top: 81%;}
}

/* 1400px ↓ (pantallas grandes pero no full) */
@media (max-width: 1400px){
  .container{max-width: 86%;}
	.logo{
    width: 170px;
}
	.logointro {
    width: 220px;
    height: 220px;
}

#intro::before {
    margin-top: -219px;
}

#intro::after {
    margin-bottom: -219px;
}
  #top{padding: 25px 40px;}
  .conslider{padding: 0 5%;}
  .conslider h1, .conslider h2{font-size: 63px;line-height: 80px;}
	.conslider p a{
    margin-top: 30px;
}
.dot.dot1 {left: 10%;top: 59%;}
.dot.dot2 {left: 40%;top: 86%;}
.dot.dot3 {left: 76%;top: 63%;}
.dot.dot4 {left: 70%;top: 81%;}
  #blog.container{width: 74%;}
  .content.home article{gap: 50px; max-width: 86%;}
  #menupro{padding: 16px 20%;}
	#menupro li{
    font-size: 18px;
}
	.breadcrumb li{font-size: 15px;}
	.linkcaption figcaption {
    font-size: 24px;
    line-height: 29px;
    padding-bottom: 20px;
}

.linkcaption a {
    font-size: 15px;
    padding: 8px 18px;
}
}

/* 1200px ↓ (laptop) */
@media (max-width: 1200px){
  .container{max-width: 92%;}
  #top{padding: 22px 25px;}
  .logo{padding: 16px;max-width: 190px;margin-top: -22px;}
  .user a{font-size: 24px;}

  .conslider h1, .conslider h2{font-size: 64px; line-height: 76px;}
  .conslider p a{margin-top: 30px; padding: 14px 38px; font-size: 18px;}

  #pause-button{right: 25px; bottom: 25px; width: 52px; height: 52px;}
  #slider .owl-dots{right: 25px; bottom: 25px; gap: 14px;}
  #slider .owl-dots::before{width: 70px;}

  #blog{margin: 90px auto;}
  #blog.container{width: 86%;}
  #blog .owl-nav{bottom: 25px; right: 25px;}

.dot.dot1 {left: 10%;top: 59%;}
.dot.dot2 {left: 39%;top: 84%;}
.dot.dot3 {left: 75%;top: 62.5%;}
.dot.dot4 {left: 70%;top: 80%;}

  .content.home{padding: 90px 0;}
  .content.home article{max-width: 92%; gap: 35px;}
  .content .homeleft h2{font-size: 42px; line-height: 52px;}
  .content .homeleft p{font-size: 20px; line-height: 32px;}

  #menupro{padding: 15px 205px;}
  #menupro li{font-size: 18px;}
	.searchtop {
    width: 180px;
}

  .single.container{max-width: 86%;}
	.linkcaption figcaption {
    font-size: 20px;
    line-height: 24px;
    padding-bottom: 20px;
}

.linkcaption a {
    font-size: 15px;
    padding: 8px 18px;
}
}

/* 992px ↓ (tablet horizontal / small laptop) */
@media (max-width: 992px){
  body{font-size: 16px; line-height: 26px;}
	.logo{max-width: 150px;}
	.plant-container::before, .plant-container::after, .contentpro::before, .contentpro::after, .contactweb::before, .contactweb::after, .boxnewsletter::before, .boxnewsletter::after, .downloads::before, .downloads::after{display: none}
  /* hero */
  #video::before, #video::after{height: 220px;}
  .conslider{top: 55%; padding: 0 5%;}
  .conslider h1, .conslider h2{font-size: 52px; line-height: 62px;}
  .conslider p{padding-bottom: 18px;}
  .conslider p a{font-size: 16px; padding: 12px 30px; border-radius: 40px;}

  /* blog */
  #blog{padding: 15px; margin: 70px auto;}
  #blog.container{width: 92%;}
  .conbox h3 a{font-size: 34px; line-height: 36px;}
  #blog .details{font-size: 18px; padding: 12px 24px;}

.dot.dot1 {left: 9%;top: 57%;}
.dot.dot2 {left: 38%;top: 82%;}
.dot.dot3 {left: 74%;top: 61%;}
.dot.dot4 {left: 68%;top: 77%;}

  /* collage title */
  #collage h2{font-size: 64px; line-height: 64px;}

  /* home section */
  .content.home article{flex-direction: column; gap: 25px;}
  .homeleft, .homeright{width: 100%;}
  .content .homeleft ul{flex-wrap: wrap; gap: 12px; margin-left: 0;}
  .content .homeleft h2{font-size: 38px; line-height: 48px;}
	.content.home::before{display: none;}

  /* menupro */
  #menupro{padding: 13px 195px;}
  #menupro li:before{display:none;} /* separadores se rompen al wrap */
  #menupro li{padding: 4px 12px;}
.searchtop {
    width: 170px;
}

  /* team */
  .boxteam{padding: 10px 20px 0;}
  .team{width: 49%;}

  /* contentpro grid cards */
  .selected-post{width: 48%; margin: 1%;}

  /* downloads */
  .boxdownloads{width: 48%; margin: 1%;}

  /* contact */
  .boxcontact{flex-direction: column;align-items: stretch;padding: 20px;}
  .boxcontactleft{min-width: 0; width: 100%;}
  .location{width: 100%; padding: 0;}
  .newsletter, .location, .social{width: 100%;}

  .footer2{gap: 25px; flex-wrap: wrap;}
}

/* 768px ↓ (tablet vertical / móvil grande) */
@media (max-width: 768px){
	.searchtop{position: initial;width: 148px;transform: none;}
/* Ajuste general */
  #menupro{
    padding: 0 10px 10px;
    background: none;
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  /* Botón hamburguesa */
  #menupro .menu-toggle{
    display: table;
    ne;
    border: 1px solid var(--color3);
    color: var(--color1);
    font-size: 15px;
    cursor:pointer;
    padding: 8px 12px;
  }

  /* CONTENEDOR DEL MENÚ (ANIMADO) */
  #menupro nav .menu-header{
    background: #FFF;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    overflow:hidden;
    max-height:0;                      /* cerrado */
    transition:max-height .35s ease;   /* slide */
    z-index:1001;
    box-shadow: 0 2px 7px -4px #838383;
  }

  /* ABIERTO */
  #menupro nav .menu-header.is-open{
    max-height:500px;                  /* ajustable */
  }

  /* UL */
  #menupro nav .menu-header ul{
    flex-direction:column;
    padding: 10px;
    width: 344px;
    border: 1px solid #DDD;
    margin: auto auto 20px;
    border-radius: 5px;
  }

  /* ITEMS */
  #menupro li{
    width:100%;
    padding: 5px 0;
    font-size: 16px;
    border-bottom: 1px dashed#DDD;
    text-align: center;
  }

  /* Quitar separadores */
  #menupro li:before{
    display:none;
  }
#menupro li a{
    color: var(--color2);
}
#menupro li a:hover{
    color: var(--color5);
}
  .container{max-width: 100%;}

  /* intro logo */
  .logointro{width: 200px;height: 200px;padding: 16px;}
  #intro::before{margin-top: -200px;}
  #intro::after{margin-bottom: -200px;}

  /* header */
  #top{padding: 18px 15px;align-items: center;}
  .logo{margin-top: 0;max-width: 110px;border-radius: 10px;}

  /* hero */
  .conslider{top: 52%;}
  .conslider h1, .conslider h2{font-size: 40px; line-height: 48px;}
  .conslider p{font-size: 15px;}
  .conslider p a{margin-top: 18px; padding: 11px 22px;}
  #pause-button{right: 15px; bottom: 15px; width: 48px; height: 48px;}
  #slider .owl-dots{right: 15px; bottom: 15px;}
  #slider .owl-dots::before{display:none;}

  /* blog */
  .conbox{padding: 15px;}
  .conbox h3{margin-bottom: 25px;}
  .conbox h3 a{font-size: 28px; line-height: 32px;}
  #blog .owl-nav{bottom: 15px; right: 15px;}
  #blog .owl-nav button{width: 44px; height: 44px;}

  /* collage */
  #collage h2{font-size: 52px; line-height: 52px; padding-bottom: 38px;}
  .grid{grid-auto-rows: 44vw;} /* más alto en móvil */

  /* content headings */
  .content h1{font-size: 38px;padding-bottom: 54px;}
	.content.page article{padding: 80px 0 60px;}
	.content.cat{padding-top: 60px;}
  .content.page p{padding: 0 0 18px;}
	.content .btns p a{
    line-height: 24px;
    padding: 10px 20px;
}
	.conteam{padding-top: 70px;}
	.content .conteam p{text-align: center;font-size: 20px;line-height: 28px;}
	.content .conteam p em{
    font-size: 22px;
    line-height: 32px;
}
	.content.page .team p{text-align: center;padding: 0 0 10px;font-size: 16px;line-height: 24px;}
	.content.page .team p strong{font-size: 20px;line-height: 28px;}

  /* plant popup */
  .plant-container{padding: 80px 0;margin-top: 60px;}
  .dot h2{font-size: 13px;padding: 6px 10px;border-radius: 5px;}
  .dot::after{width: 26px;height: 26px;}
	.dot.dot1 {left: 10%;top: 58%;}
    .dot.dot2 {left: 34%;top: 81%;}
    .dot.dot3 {left: 70%;top: 61%;}
    .dot.dot4 {left: 72%;top: 77%;}
  .popup{max-width: 92%; padding: 25px;}
  .popup-content h3{font-size: 24px; line-height: 32px;}
  .content .popup-content p{font-size: 16px; line-height: 28px;}

	.contentpro, .contactweb, .boxnewsletter, .downloads{
    margin-top: 60px;
    padding: 80px 10px 0;
    box-sizing: border-box;
}
	.contactweb, .boxnewsletter, .downloads{padding: 80px 20px;}

	.disclaimer{
    padding-top: 80px;
}

  /* products page */
  .single.container{padding: 90px 10px 70px; max-width: 94%;}
  #product-form{max-width: 100%;}
  #product-list .product{gap: 10px;}
  #product-list .product h3{min-width: 0;}

  /* contact form columns */
  .bloform1{width: 100%;}
  .boxcontacright h2, .content .boxcontacright h2{font-size: 36px; line-height: 44px;}

  /* newsletter */
  .boxnewsletter form{flex-direction: column; gap: 12px; max-width: 100%;}
  .boxnewsletter button{width: 100%;}
	
	.content .navigation ul {
        gap: 8px;
    }

    .content .navigation li a,
    .content .navigation li span {
        min-width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .content .navigation li.totalPage {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}

/* 576px ↓ (móvil) */
@media (max-width: 576px){
  body{font-size: 15px; line-height: 25px;}
/* intro logo */
  .logointro{width: 160px;height: 150px;}
  #intro::before{margin-top: -149px;}
  #intro::after{margin-bottom: -149px;}
	header {
    background-color: #FFF;
    position: fixed;
    z-index: 1000;
    box-shadow: 0 0 7px -2px #838383;
}
#top {
    padding: 10px 20px;
}
#topright{gap: 0;}
.menuprin, .lang li a {
    color: var(--color1);
    font-size: 15px;
}
.user a {
    color: var(--color1);
    font-size: 16px;
}
.lang li {
    border-color: var(--color1);
}
	.logo{
    max-width: 84px;
    padding: 0;
}

  /* hero text */
  .conslider{padding: 0 4%;}
  .conslider h1, .conslider h2{font-size: 32px; line-height: 38px;}
  .conslider p a{width: 100%; text-align: center;}

  /* titles */
  #collage h2{font-size: 44px; line-height: 44px;}
  .content .homeleft h2{font-size: 32px; line-height: 40px;}
  .content h1{font-size: 34px;line-height: 44px;padding-bottom: 40px;margin-bottom: 20px;}
	.conteam h2{font-size: 38px;line-height: 42px;margin-bottom: 15px;}
	.content .contentpro h2{font-size: 38px;line-height: 42px;margin-bottom: 15px;padding-left: 64px;}
	.content .disclaimer h2{font-size: 32px;line-height: 40px;margin-bottom: 15px;padding-left: 64px;}
	.content .contentpro h2::after, .content .disclaimer h2::after{width: 20px;}
	#collage h2::before, .conteam h2::before, .content .contentpro h2::before, .content .disclaimer h2::before, .content h1::before{background-size: 90%;width: 40px;}
	.content .contentpro h2::before, .content .disclaimer h2::before{left: 20px;}
	.team{width: 100%;padding: 10px 0;}
	.btns{display: block;}
	.content .btns p a{margin: 5px auto 0}

	.dot.dot1 {left: 8%;top: 59%;}
    .dot.dot2 {left: 36%;top: 85%;}
    .dot.dot3 {left: 72%;top: 60%;}
    .dot.dot4 {left: 75%;top: 81%;}

	.selected-post, .boxdownloads{width: 98%;}
	.boxpro{
    padding-bottom: 40px;
}
	.boxsearch {justify-content: center;}
	.content .boxsearch h2 {
    padding-bottom: 5px;
    width: 100%;
}
	#product-list{
    padding-bottom: 15px;
}
	#product-list .product{
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 15px;
}
	#product-list .product h3{
    width: 100%;
    text-align: center;
}
#pagination {
    text-align: center;
}
#additional-form {
    text-align: center;
}

#product-form input, #product-form textarea {
    text-align: center;
}
	#product-form button[type="submit"]{
    margin: 10px auto 0;
}

  /* blog */
  #blog{margin: 55px auto;}
  #blog .details{font-size: 16px; padding: 11px 18px;}
	#blog .conbox img{
    width: 27px;
}

	.content.home{
    padding: 35px 0 55px;
}
.content .gallery-item {
    margin: 0.4% !important;
    width: 49.2% !important;
}
  /* footer */
  footer{padding-top: 80px;}
  .social li a{width: 52px; height: 52px; font-size: 22px;}
  .links li{padding: 0 10px;}
  #copy{font-size: 13px;}
}
@media (max-width: 480px) {
    .content .navigation li.prevPost,
    .content .navigation li.nextPost {display: none;}
	.conteam h2, .content .contentpro h2{font-size: 34px;line-height: 38px;}
	.dot.dot1 {left: 10%;top: 55%;}
    .dot.dot2 {left: 32%;top: 78%;}
    .dot.dot3 {left: 61%;top: 57%;}
    .dot.dot4 {left: 64%;top: 74%;}
}