/*
Theme Name: Awero Test Teema
Author: Bigeye OÜ
Author URI: https://bigeye.ee
Version: 1.0.0

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* Leiameid lehe stiilid */
.tasumine-hero{
	min-height:200px !important;
}
@media (max-width: 600px) {
    .tasumine-hero {
       height: 65px !important;
    }
}

/* Moodne kalendri stiilid */
.events-calendar {
    margin-top: 20px;
    background: #fff;
    border-radius: 0;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid #022B65;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    position: relative;
}

.calendar-header h4 {
    color: #022B65;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;
    text-align: center;
}

.month-nav {
    background: #022B65;
    color: white;
    border: none;
    border-radius: 0;
    width: 40px;
    height: 40px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Hanken Grotesk', sans-serif;
}

.month-nav:hover {
    background: #1976d2;
    transform: scale(1.1);
}

.month-btn {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 14px;
}

.calendar-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: transparent;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

.weekday {
    padding: 12px 8px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(2, 43, 101, 0.05);
    border-radius: 0;
    font-family: 'Hanken Grotesk', sans-serif;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

/* Eemalda vahe mitme päeva ürituste vahel */
.calendar-day.has-events.multi-day-start + .calendar-day.has-events.multi-day-middle,
.calendar-day.has-events.multi-day-middle + .calendar-day.has-events.multi-day-end,
.calendar-day.has-events.multi-day-start + .calendar-day.has-events.multi-day-end {
    margin-left: -8px;
}

.calendar-day {
    background: #fff;
    padding: 12px 8px;
    min-height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 0;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-family: 'Hanken Grotesk', sans-serif;
}

.calendar-day:hover {
    /* Hover efekt eemaldatud */
}

.calendar-day.empty {
    background: transparent;
    cursor: default;
}

.calendar-day.empty:hover {
    transform: none;
    box-shadow: none;
}

.calendar-day.today {
    background: #fff;
    border: 2px solid #022B65;
    color: #022B65;
    font-weight: 700;
}

.calendar-day.has-events {
    background: #022B65;
    border: 2px solid #022B65;
    color: white;
    font-weight: 600;
}

.calendar-day.has-events:hover {
    background: #ff9800;
    color: white;
    border-color: #ff9800;
}

/* Hover efekt kõigile mitme päeva ürituse päevadele */
.calendar-day.has-events.hover-effect {
    background: #ff9800;
    color: white;
    border-color: #ff9800;
    transform: scale(1.05);
    z-index: 10;
    position: relative;
}

/* Mitme päeva ürituse ühendamine */
.calendar-day.has-events.multi-day-start {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}

.calendar-day.has-events.multi-day-middle {
    border-radius: 0;
    border-left: none;
    border-right: none;
    margin-left: 0;
    margin-right: 0;
}

.calendar-day.has-events.multi-day-end {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: none;
}

.day-number {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    font-family: 'Hanken Grotesk', sans-serif;
}

.event-dots {
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2px;
}

.event-dot {
    width: 8px;
    height: 8px;
    background: #022B65;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.calendar-day.has-events .event-dot {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.calendar-day.today .event-dot {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.calendar-day.has-events:hover .event-dot {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.calendar-day.has-events.active {
    background: #ff9800;
    color: white;
    border-color: #ff9800;
}

.calendar-day.has-events.active .event-dot {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.event-dot.more {
    background: #ff5722;
    font-size: 8px;
    width: auto;
    height: auto;
    padding: 2px 4px;
    border-radius: 10px;
    color: white;
    line-height: 1;
    font-weight: 600;
    min-width: 16px;
    text-align: center;
}

.next-event {
    margin-top: 20px;
}

.next-event h4 {
    color: #022B65;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 16px;
    margin-bottom: 15px;
    text-align: left;
}

/* Ürituste stiilid */
.events-container {
    margin-top: 20px;
}

.event-card {
    background: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #022B65;
}

.event-card.today {
    border-left: 4px solid #ff9800;
}

.event-card.tomorrow {
    border-left: 4px solid #9c27b0;
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f5f5f5;
    padding: 10px 15px;
    min-width: 60px;
    border-radius: 0;
    font-family: 'Hanken Grotesk', sans-serif;
}

.event-day {
    font-size: 16px;
    font-weight: 600;
    color: #022B65;
    line-height: 1;
    font-family: 'Hanken Grotesk', sans-serif;
    margin-bottom: 4px;
}

.event-month {
    font-size: 12px;
    color: #022B65;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Hanken Grotesk', sans-serif;
}

.event-time {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    font-family: 'Hanken Grotesk', sans-serif;
}

.event-content {
    flex: 1;
}

.event-title {
    font-size: 18px;
    font-weight: bold;
    color: #022B65;
    margin: 0 0 10px 0;
    line-height: 1.3;
    font-family: 'Hanken Grotesk', sans-serif !important;
}

.event-location {
    display: flex;
    align-items: center;
    margin: 8px 0;
    color: #000;
    font-size: 14px;
    font-family: 'Hanken Grotesk', sans-serif;
}

.location-icon {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
}

.event-description {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    margin: 10px 0;
}

.no-events {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    background: #f8f9fa;
}

.no-events p {
    margin: 10px 0;
}

.leia-meid {
    color: #022B65;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Hanken Grotesk', sans-serif;
    text-align: left;
    margin-bottom: 20px;
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #022B65;
    line-height: 1.2;
}

.events-title {
    color: #022B65;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Hanken Grotesk', sans-serif;
    text-align: left;
    margin-bottom: 20px;
    margin-top: 26px;
    padding-bottom: 10px;
    border-bottom: 2px solid #022B65;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .event-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .event-date {
        align-self: flex-start;
    }
    
    .event-card {
        padding: 15px;
    }
    
    .event-title {
        font-size: 16px;
    }
}
p{
  font-family: 'Hanken Grotesk', sans-serif;
  font-size:16px;
  font-weight: 400;
}

.navbar-nav .nav-item .nav-link {
  font-family: 'Hanken Grotesk', sans-serif;
}
h1, h2, h3 {
  font-family: 'Playfair Display', serif !important;
}
h2{
  font-size: 42px !important;
  font-weight: 700 !important;
}

footer {
 margin-top: 0px !important;
}
.card-title a {
  font-family: 'Playfair Display', serif !important;
  font-size: 24px;
  font-weight: 600;
  color: #022B65 !important;
}

.btn {
  font-family: 'Hanken Grotesk', sans-serif !important;
}
#menu-item-282{
	font-size:16px;
	color:#022B65;
	font-weight: 800;
	font-family: 'Hanken Grotesk', sans-serif;
}
header {
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 100;
}
.hero-btn {
  position: relative;
  display: inline-block;
  padding: 10px 40px !important;
    padding-right: 40px;
    padding-left: 40px;
  color: #fff;
  background-color: #08244C !important;
  border: 1px solid #08244C !important;
  cursor: pointer;
  transform: skew(-20deg);
  overflow: hidden;
  text-align: center;
  border-radius: 0 !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  float: right;
  margin-right: 20px;
}

.hero-btn span {
  display: block;
  transform: skew(20deg);
}
#hero p, #hero{
  color:#fff;
}
.front-hero-img img{
  position: relative !important;
  top: auto;
  left: auto;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  z-index: 0;
}
.hero-content{
	margin-top: 130px;
}
.hero-container {
	width:1100px !important;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
#hero .finished-shape img {
  position: absolute !important;
  top: 16%;
  left: 18%;
  width: 167%;
  height: auto;
  display: block;
  z-index: 0;
}
.hero-shape {
   position: absolute !important;
    top: 17% !important;
    left: 57% !important;
    max-width: 35% !important;
    height: auto;
    display: block;
    overflow: hidden !important;
}
.navbar {
  max-width: 1300px;
  margin: 0 auto;
}
.bg-dark {
  background-color: transparent !important;
}
main {
  background: white;
}


footer .row {
  padding: 40px 0 10px;
}

.copyright {
  text-align: left;
  color: #777;
}

main {
  margin-top: 0px;
}

.menu {
  list-style: none;
  padding-left: 0;
}

.menu-item a {
    display: inline-block;
    padding: .5rem 1rem;
}

[class$="-widget"] .menu-item, [class$="-widget"] .menu-item a {
  display: block;
  padding: 0;
}

.navbar-nav .menu-item a {
  padding-right: 10px;
  padding-left: 10px;
}

.navbar-light .navbar-nav .menu-item a {
    color: rgba(0,0,0,.5);
}

.navbar-light .navbar-nav .menu-item a:hover {
    color: rgba(0,0,0,.7);
    text-decoration: none;
}

.navbar-light .navbar-brand.active, .navbar-light .navbar-nav .menu-item a.active, .nav .menu-item a.active {
  color: darkblue;
}

[class$="-widget"] ul {
  list-style: none;
  padding-left: 0;
}
.wpcf7-not-valid-tip {
  position: absolute !important;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
z-index: 999 !important;
  background-color: #fff !important;
  position: absolute !important;
bottom: -76px !important;
  font-size: 16px !important;
  right: 0px !important;
}
.wpcf7 form.sent .wpcf7-response-output {
  font-size: 16px !important;
  z-index: 999 !important;
}
.comment-respond {
  border: 1px solid #ccc;
  background: #efefef;
  padding: 20px;
}

.form-submit input[type="submit"] {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.25;
  border-radius: .25rem;
  transition: all .15s ease-in-out;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
  cursor: pointer;
}

@media (min-width: 992px) {
  .menu-item {
    display: inline-block;
  }
 
}
#hero{
  height:auto !important;
}
#hero .peamine-pilt {
  position: absolute !important;
  top: 13%;
  right: 0%;
}
.image-wrapper img {
  width: 100%;
  position:relative;
  top:40px;
  height: 100% !important;
}
header a{
  color:#fff;
}

.header-single a{
  color: #022B65 !important;
}
#info2 .image-wrapper img{
	top:0px !Important;
}
.card-body{
	padding-top:5px !important;
}
.header-single {
  position: relative !important;
  top: 0px;
  width: 100%;
  z-index: 100;
}
#counter {
  background-color: #08244C;
  padding: 40px 0;
}
.counter-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.counter-item {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}
.counter-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  height: 75px;
}
.counter-label {
  display: block;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #E38F11;
}
#product-category .card{
  border: none !important;
  background-color: transparent;
}
#product-category .card-img-top{
  width: 200px;
  display:block;
  margin: 0 auto;

}
#product-category{
  background-color:#FFFDF5 !important;
  padding-top: 10px;
}
#product-category h2{
  color: #022B65 !important;
}

#info .info-btn, #info2 .info-btn{
  position: relative;
  display: inline-block;
  padding: 10px 40px !important;
  color: #08244C;
  background-color: transparent !important;
  border: 1px solid #08244C !important;
  cursor: pointer;
  transform: skew(-20deg);
  overflow: hidden;
  text-align: center;
  border-radius: 0 !important;
  width: fit-content;
  font-size: 16px !important;
  font-weight: 400 !important;
  float: right !important; 
}
.info-btn span {
  display: block;
  transform: skew(20deg);
}
#info2 p, #info p{
	color: #08244C;
}
#info {
  background: #FFFDF5;
    background-position-x: 0%, 0%;
    background-position-y: 0%, 0%;
  padding-top: 80px;
  padding-bottom: 90px;
  background-position: right top, right top;
  overflow:hidden;
}
.info-shape img{
position: absolute;
  left: 54%;
  top: 65%;

}
.info-shape{
	position:relative;
}
#info h2, #info2 h2{
  color:#022B65;
  font-size: 32px;
  margin-bottom: 30px;
}

#logo-and-text {
  background-color: #FFFDF5;
  height: 220px;
}
#logo-and-text p {
  color: #fff;
  width: 628px;
  margin-left: 68px;
  margin-top: 20px;
}
#logo-and-text img{
  width:200px;
height: auto !important;
}
#contact-section{
  background-color: #FFFDF5 !important;
  padding-top: 80px !important;
  padding-bottom: 150px !important;
}
#contact-section .contact-image img {
  position: relative;
  right: 232px;
}
#wpcf7-f95-o1{
  width:326px !important;
}
#contact h3 {
  color: #022B65;
  font-size: 32px;
  font-weight: 700;
}

.wpcf7-submit{
	position: relative !important;
  display: inline-block;
  background-color: #022B65 !important;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  transform: skew(-20deg);
  overflow: hidden;
  float:right;
}
.wpcf7-submit span {
  display: block;
  transform: skew(20deg);
  padding-left: 10px;
  padding-right: 10px;
}
.styled-button {
  display: block;
  transform: skew(20deg);
}
.contact-details h3{
	font-family: 'Hanken Grotesk', sans-serif !important;
	font-size: 16px !important;

}
.contact-details p{
	font-family: 'Hanken Grotesk', sans-serif !important;
	font-size: 16px !important;
	font-weight: 400;
	color:#022B65; 
}
/* Webkit-põhised brauserid (Chrome, Safari, Opera) */
input:not(.dgwt-wcas-search-input)::placeholder,
textarea::placeholder {
    color: #022B65 !important;
	opacity: 1 !important;
}

/* Mozilla Firefox */
input:not(.dgwt-wcas-search-input)::-moz-placeholder,
textarea::-moz-placeholder {
    color: #022B65 !important;
}

/* Microsoft Edge */
input:not(.dgwt-wcas-search-input):-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #022B65 !important;
}

/* Internet Explorer 10-11 */
input:not(.dgwt-wcas-search-input)::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: #022B65 !important;
}
.related-post-link .img-fluid {
  width: 100% !important;
  height: 137px !important;
  object-fit: cover !important;
}
#news h2{
color:#022B65;
  font-size:32px;
margin:30px 30px;
}
#news{
  padding-top:50px;
  padding-bottom:50px;
  background-color:#FFFDF5 !important;
}
#news .card-img-top {
  width: 100% ;
  object-fit: cover;
  border-top-left-radius: calc(.25rem - 1px);
  border-top-right-radius: calc(.25rem - 1px);
  height: 250px;
}
#news .card {
  border: none;
 background-color: transparent;

}
.new-btn {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  padding: 5px 23px;
  border: none;
  background: none;
  background-color: #022B65 !important;
  border-radius: 0px !important;
  float: right;
  transform: skew(-20deg);
  overflow: hidden;
  border: none !important;
  text-decoration: none;
  color: #fff;
}

.new-btn span {
  display: inline-block;
  transform: skew(20deg);
  padding: 0;
}
#news .card-body{
  padding:0px 0px !important;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

#news .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#news .new-btn {
  margin-top: auto;
  align-self: flex-start;
}
#news .see-more{
  background-color: #022B65 !important;
  border-radius: 0px !important;
  margin-top:60px;
  transform: skew(-20deg);
  overflow: hidden;
  border: none !important;
}
.see-more span {
  display: block;
  transform: skew(20deg);
  padding-left: 20px;
  padding-right: 20px;
}

#news .card-text {
  height: 150px;
  overflow: hidden;
}
#news .card-title {
  color: #022B65;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-top: 20px;
}
#news .card-date{
  margin-top:20px !important;
}
.single-post-container h3{
	color: #022B65;
  font-size: 26px;
  font-weight: 700;
  line-height: 32px;
  margin-top: 20px;
}
.related-post-link{
	color:#000 !important;
}
.related-post-title{
	margin-top:20px;
}
.post-content{
	margin-top:26px;
}
.page-header{
  height:500px !important;
}
.shop-hero {
  background-color: #FFFDF5 !important;
}

.woocommerce-products-header{
  display:none;
}
.woocommerce-ordering {
  max-width: max-content !important;

}

.woocommerce-product-gallery {
  opacity: 1 !important;
  width:100% !important;

}
.combo-discount-text{
	color: #FFAE2D;
  font-family: 'Hanken Grotesk';
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
}

.products{
  display: flex;
  flex-wrap: wrap;
}
/* Peamine konteiner */
.woocommerce-page .container {
  max-width: 1200 !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.woocommerce-breadcrumb{
	display:none;
}
.products-container{
  margin-top:60px;
  margin-bottom:100px;

}
/* Täiendavad stiilid, et tagada õige paigutus */

.product-colors {
  display: flex;
  justify-content: flex-end;
  margin-top: 0px !important;
  position: relative;
  bottom: 2px;
}
.entry-summary {
width:100% !important;
}
.woocommerce div.product {
  margin-bottom: 0;
  position: relative;
  display: grid;
}
.color-box {
  width: 100%
}

/* Lisame värvi klassidele taustavärvid */

.product_title{
  font-family: 'Hanken Grotesk', sans-serif !important;
  font-size:16px !important;
  font-weight: 400;
  
}
.col-md-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
  justify-content: center !important;
  display: grid;
}

.shop-hero p{
  color: #08244C;
}
.shop-hero h2{
  color: #022B65;
}
.shop-hero-content{
  width:1140px;
}
.shop-hero .left{
  margin-top:154px;
}
.hero-img-fluid{
  position: relative;
  top: 62px;
  left: 115px;
}
input[type="text"], input[type="tel"], textarea {
  background: transparent !important;
  margin-bottom: 0px !important;
}
.woocommerce-columns .col-1 {
  -ms-flex: 0 0 50% !important;;
  flex: 0 0 50% !important;
  max-width: 50% !important;
}
.woocommerce-columns .col-2 {
  -ms-flex: 0 0 50% !important;;
  flex: 0 0 50% !important;
  max-width: 50% !important;
}
.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
  float: left !important;
  width: 48%;
}
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
  float: left;
  width: 100% !important;
}
@media only screen and (max-width: 600px) {
  .peamine-pilt{
	display:none;
}
}



#product-category{
	display:none;
}

#about-us-hero {
  background-color: #FFFDF5 !important;
  height: 600px;
  margin-top: 60px;
  padding-top: 60px;
}
#about-us-hero h2{
	color:#022B65;
}
#about-us-hero .about-hero-img{
	position: absolute;
  left: 30%;
}

#about-us-hero  .hero-shape {
  position: absolute;
  right: 0;
  top: 141px;
}

#about-us-contact {
  background-color: #FFFDF5 !important;
  position: relative !important;
}
#about-us-contact h3{
	font-size: 16px !important;
	font-weight: 600 !important;
}
#about-us-contact h2{
	font-size: 42px !important;
	font-weight: 700!important;
	color:#022B65;
}
#about-us-contact hr {
  border-top: 1px solid #08244C !important;
  width: 90% !important;
  margin-left: 0px;
}
#about-us-map .img-fluid{
	width:50% !important;
}
#about-us-map {
  background-color: #fffdf5 !important;
}
#about-us-map p{
	color: #08244C;
}
#about-us-map .contact-map img{
	position: relative !important;
  bottom: 44px !important;
}
#about-us-info {
  background-color: #FFFDF5 !important;
  height: 420px;
  justify-content: center !important;
  display: grid;
} 
.contact-group a{
color: #08244C !important;
}
.contact-person{
font-weight:600 !important;
}
.woocommerce .woocommerce-ordering, .woocommerce-page .woocommerce-ordering {
  float: left !important;
}
.woocommerce-ordering {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 200px;
    margin: 20px auto;
}
.term-18 .woocommerce-ordering {
    display: none !important;
}
.woocommerce-ordering select.orderby {
  width: 100%;
  padding: 0px;
  font-size: 16px;
  font-weight: 500;
  border: none !important;
  border-radius: 0px;
  background-color: #fff;
  color: #08244C;
  cursor: pointer;
  position: relative;
  top: 8px;
}
.shop-page .col-md-12{
	padding:0px;
}
/* Lisa kohandatud nool */
.woocommerce-ordering {
    position: relative;
}



/* Hover ja fookus */
.woocommerce-ordering select.orderby:hover,
.woocommerce-ordering select.orderby:focus {
    border-color: #C7780D;
    outline: none;
}

/* Safari & iOS Fix */
@supports (-webkit-touch-callout: none) {
    .woocommerce-ordering select.orderby {
        padding-right: 30px;
    }
}

.subcategory-filter{
	background-color: #08244C !important;
  color: white;
  border: none;
  padding: 5px 30px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 0px !important;
}
.about-shape-container {
  position: absolute;
  bottom: 56px;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  padding-top: 66px;
}

.about-shape {
   width: auto;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

#about-us-info p{
	color: #08244C;
}

.about-us-info-btn{
 position: relative;
  display: inline-block;
  padding: 10px 40px !important;
  color: #08244C;
  background-color: transparent !important;
  border: 1px solid #08244C !important;
  cursor: pointer;
  transform: skew(-20deg);
  overflow: hidden;
  text-align: center;
  border-radius: 0 !important;
  width: 160px;
  font-size: 16px !important;
  font-weight: 400 !important;
  float: right !important;
}
.about-us-info-btn span{
  display: block;
  transform: skew(20deg);
}
#about-us-info h2 {
  font-family: 'Playfair Display', serif !important;
  font-size: 273px !important;
  font-weight: 400 !important;
  color: #022B65;
  line-height: 200px;
  text-align: center;
  margin-left: -40%;
}
#about-us-info .info-stats p{
	 font-family: 'Playfair Display', serif !important;
	 font-size: 42px !important;
	 font-weight:700;
	 color:#022B65;
	 text-align: center;
	 margin-left: -40%;
}



#about-us-slider{
	background-color: #FFFDF5 !important;
	width:100%;
	overflow:hidden;
}

#about-us-slider img{
	width:100%;
}
#about-us-gallery .vertical-center{
background: url('https://awero.ee/wp-content/uploads/2024/06/beige-shape.svg');
}

#about-us-gallery{
background-color: #FFFDF5 !important;	
}


#finished-hero {
  padding-top: 90px !important;
  background-color: #fffdf5 !important;
  position: relative;
  overflow: hidden;
  margin-left: 0px !important;
}

#finished-hero h2{
color: #022B65 !important; 	
font-family: 'Playfair Display', serif !important;
font-size: 42px !important;
font-weight:700 !important;
}
#finished-hero p{
color: #08244C !important; 	
font-size: 16px !important;
font-weight:400 !important;
}

.finished-hero-img{
	width: 440px !important;
  top: 22% !important;
  position: absolute !important;
  left: 20% !important;
}
.finished-hero-img img{
	width: 440px !important;
}

.finished-hr{
	width: 1216px !important;
	border-top: 1px solid #08244C !important;
	margin-bottom:60px;
}
.finished-shape img {
  position: absolute !important;
  top: 24%;
  left: 57%;
  width: 718px;
  height: auto;
  display: block;
  z-index: 0;
}
.hero-img img {
    position: absolute !important;
    top: 22%;
    left: 68px;
    width: 100%;
    height: auto;
    z-index: 0;
}
.color-box-wrapper {
    position: relative;
    right: -10px;
}
.product-image img {
  height: 250px !important;
  object-fit: cover;
  width: 100%;
}
#cart-bar{
	background: #08244C !important;
	}
	.variations_button {
  position: relative;
  right: 13px;
		margin-top:20px;
}
  
@media only screen and (max-width: 600px) {
	#news .see-more{
  margin-top:30px !important;

}
	.pdf-button {
  margin-bottom: 30px !important;
}
	.product-quantity .col-4{
		max-width:100% !important;
	}
	.combo-accessory-item .accessory-price{
		font-size:14px !important;
	}
	.combo-accessory-item {
  padding: 5px 6px !important;
}
	.cart {
  width: 98% !important;
}
.combo-discount-text {
  color: #FFAE2D;
  font-size: 11px !important;
}
.combo-accessory-item .accessory-title a {
  font-size: 14px !important;
}

	.info-mask img {
  width: 100%;
  position: relative;
  top: 40px;
  height: 100% !important;
  left: 0px;
}
#info2 .image-wrapper img {
  top: 0px !important;
  left: 0px;
  width: 100% !important;
}
	#counter {
    padding: 30px 0;
}
  .counter-number {
    font-size: 70px;
    height: auto;
    margin-bottom: 10px;
  }
	.counter-label {
    font-size: 15px;
}
	.counter-item {
    padding: 0 5px;
}
	.checkout-order-summary-block-fill-wrapper{
		display:none;
	}
	.wc-block-components-checkout-step__content #contact{
	padding-top: 0px !important;
    padding-bottom: 0px !important;
    background: none !important;
    background-color: none !important;
}
	.wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__label {
  align-items: center;
  border-width: 0;
  display: inherit !important;
  justify-content: flex-start;
}
.product-image img {
  height: 245px !important;
}
	  .variations_button {
    position: relative;
    right: -6px !important;
	        top: 31px;
  }
	#cart-bar{
	background: #022B65 !important;
	padding-bottom: 25px !important;	
	}
	#cart-info{
	display:block !important;	
	}
	#cart-bar a{
		position:relative !important;	
		top:12px !important;	
	}
	.title-and-button {
  margin-top: 20px !important;
}
	.category-description{
	 width:100% !important;
	}
	.category-details{
		display:grid !important;
		margin-top: 0px !important;
	}
	.additional-info-button{
		width:max-content;
	}
	#about-us-contact {
  margin-top: 190px;
}
	.product-image img {
  object-fit: cover;
    width: 100% !important;
  
}
	.product-image {
  width: 100% !important;
  height: 230px !important;
  margin-bottom:20px;
}
 .color-box-wrapper {
  position: relative;
  right: -45px !important;
}
	.products-container {
  width: 100% !important;
}
  #contact .contact-left, #contact .contact-right{
	  display:none !important;
  }
  
  .hero-shape {
  position: absolute;
  left: -241px;
  top: 56%;
  width: 110%;
}
 #hero .peamine-pilt {
    position: absolute;
    top: -159px;
    right: -16px;
    display: none !important;
  }
#logo-and-text p {
  color: #fff;
  width: 100%;
  margin-left: 0px;
}
.collapse.show {
  display: block;
  background-color: #FFFDF5;
}
header a{
	color:#08244C !important;
}

.navbar,
#main-header .navbar {
    padding: 0 !important;
}
.navbar-nav {
  height: 80vh !important;
}

.hero-content {
  margin-top: 80x !important;
  margin-bottom: 46px !important;
}
  .hero-content h2 {
          font-size: 52px !important;
        line-height: 33px;
  }
.hero-btn {
  float: left;
}
 #hero {
    height: auto !important;
  }
  .trp-language-switcher-container  a span{
	  color:#08244C !important;
  }
#finished-hero {
  padding-top: 40px !important;
}
.front-hero-img img {
 position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;

}
 #hero .finished-shape img {
    display:none;
  }
.info-left{
	order:2 !important;
}
#info {
 background: #FFFDF5 !important;
 position: relative;
}
.info-shape img {
    position: absolute;
    left: 18%;
    top: 85px;
    width: 81%;
  }
.klaas-shape{
	display:none;
}
#info h2 {
  font-size: 32px !important;
}
.info-left .mt-3{
	margin-left:auto;
	margin-right:auto;
}
.page-template-finished #finished-hero {
	height: 350px !important;
}
      #contact {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    background:url('/wp-content/themes/awero/images/awero%20beez.svg') no-repeat center center;
    background-color: rgba(0, 0, 0, 0);
    background-position-x: center;
    background-position-y: center;
    background-size: auto;
    background-color: #FFFDF5;
    background-size: contain;
    background-position:
center center;
  }
.contact-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* Lisatud ülemine äär, et nupp ei jääks teksti külge kleepuma */
}
#logo-and-text .company-text {
    display: flex;
    flex-direction: column;
}
.contact-map iframe {

  mask-image: none !important;
}
.variations tr{
	display:flex !important;
}
.woocommerce-product-attributes-item th{
	display:flex !important;
}
#contact-section{
	padding-bottom: 30px !important;
}
#logo-and-text .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
#kontakt-video {
padding: 0px !important;
  width: 100% !important;
  padding-bottom: 30px !important;
}
#about-us-info .justify-content-center{
	margin-top: -59px !important;
}
#about-us-contact h3 {
  margin-top: 20px;
}
.custom-video {

  width: 100% !important;
}
.footer{
	height:220px !important;
}
 #logo-and-text .text {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 78%;
  }
    #logo-and-text {
    background-color: #08244C !important;
    height: 275px;
    overflow: hidden;
  }
  .sec-padding {
  padding:50px 0;
}
.info-left{
	padding:20px !important;
}
#info{
	padding-bottom: 0px !important;
}
#video{
	padding:0px !important;

}
  .content-wrapper {
  padding: 0px 0px !important;
}
  .skew-wrapper {
  width: 100% !important;

}
.image-wrapper img {
  width:100%;
  margin-left: auto;
  margin-right: auto;
}
.form-container label{
	width:100% !important;
}
.modal-right{
	margin-top:210px;
}
    .finished-shape img {
    max-width: 100% !important;
    height: auto;
    display: none !important;
    position: absolute !important;
    top: 60% !important;
    left: 7% !important;
  }
.erilahendused {
  font-size: 18px !important;
}
.hero-img img {
    position: absolute !important;
    top: -174px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 0;
  }
  .angled-right img {
    width: 100% !important;
    clip-path: none !important;
    height: 609px !important;
  }
#about-us-info h2 {
  margin-left: 0px !important;
}
#about-us-info .info-stats p {
    margin-left: 0px !important;
}
#about-us-slider{
	display:none !important;
}
#about-us-map .img-fluid {
  width: 80% !important;
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}
.text-left{
	text-align: justify !important;
}
#about-us-contact hr {
  width: 100% !important;
}
.contact-map img{
	width: 100% !important;
}
#finisehd-hero .finished-shape  img{
    display: none !important;
  }
  .finished-hr {
  display: none !important;
}
.finished-contact{
	display:none !important;
}
.mobile-none{
	display:none !important;
}
 #finished-hero .hero-img {
    position: relative;
    top: 220px;
    left: 6px;
  }
  
.finished-img{
	height:auto !important;
}
.finished-image-container{
	min-height: auto !important;
}
#about-us-gallery .vertical-center {
  background: none !important;
}
.gallery-item{
width: calc(50% - 20px) !important;
}
.filters {
  width: 100% !important;
  display: grid !important;
  border-bottom: none !important;
}
.separator{
	display:none !important;
}
.form-control {
  padding-left: 54px  !important;
}
.hero-container {
  width: 100% !important;
}

.woocommerce div.product{
	margin:0px !important;
}
.color-box {
  width: 15px !important;
  height: 15px !important;
}
.products .col-sm-6{
	padding: 0px !important;
}
.product-attributes p{
	font-size: 12px !important;
}
.product-colors {
  left: 36% !important
}
 .logo-section {
    left: 1%;
  }
  .navbar {

    margin-top: 5px;
}
#main-header {

  height: 75px !important;
}
header {
  position: absolute !important;
 
}
.lightbox-content {
  top:233px !important;
  position: relative !important;
}
.prev {
  left: -47px !important;
  top: 32% !important;
}
.next {
  right: -47px !important;
  top: 33% !important;
}
  .menu-open {
  background-color: #FFFDF5 !important;
}
 .mob-menu-bottom {
    position: absolute;
    top: 50%;
    width: 87%;
    left: 26px;
  }
	.mob-menu-top{
	margin-left:26px;
	margin-top: 50px;
		
	}
.mob-menu-bottom hr{
	border-top: 1px solid #022B65;
}
.nav-item {
    text-align: left !important;
  }
   #mobileMenuContent {
    background: url('https://awero.ee/wp-content/uploads/2024/06/mob-men-shape.png');
    background-size: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position-y: 207px;
  }
  #about-us-map {
  background-color: #fffdf5 !important;
  margin-top: 160px;
}
  .about-us-info-btn {
    float: left !important;
    left: 29% !important;
    top: 18px !important;
  }
archive-prodcut #contact{
	background-color: #fff !important;
}
.woocommerce-filter .btn-secondary {
   padding-left: 44px;
}
.dropdown-item {
  padding-left: 58px !important;
}
input[type="checkbox"] {
  left: 68px !important;
}
.arrow-icon {
  left: 17px !important;
}
.owl-carousel .owl-item img {
    display: block !important;
    width: 100% !important;
    height: 265px !important;
    object-fit: cover !important;
}
.product-modal-content .modal-body{
	padding-right: 0px;
  padding-left: 0px;
  margin-right: 0px;
  margin-left: 0px;
}
.product-modal-content .modal-body .col-md-12{
	padding-right: 0px;
  padding-left: 0px;
  margin-right: 0px;
  margin-left: 0px;
}
.modal-body .col-md-12 {
  margin-bottom: 0px !important;
}

}

.owl-carousel, .owl-carousel .owl-item {
  left: 10px !important;
}
.woocommerce-filter .btn-secondary {
  color: #08244C !important;
  background-color: #fff !important;
  border-color: #fff;
  width: 100%;
  text-align: left;
}
.woocommerce-filter .btn-secondary:hover {
  border-color: #fff !important;
}
.woocommerce-filter .btn-secondary:hover,
.woocommerce-filter .btn-secondary:focus {

    outline: none !important;
}

.dropdown, .dropleft, .dropright, .dropup {
  position: relative;
  width: 100% !important;
}
.arrow-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url('https://awero.ee/wp-content/uploads/2024/06/arrow-down.svg') no-repeat !important;
  background-size: contain;
  margin-left: 5px;
  position: absolute;
  top: 15px;
  right: 5px;
}
.arrow-up {
        background-image: url('https://awero.ee/wp-content/uploads/2024/06/arrow-up.svg');
	 background-size: contain;
  margin-left: 5px;
  position: absolute;
  top: 15px;
  right: 5px;
  width: 20px;
  height: 20px;
  display: inline-block;
}
.dropdown-toggle::after{
	display:none !important;
}
.dropdown-menu{
	width:100% ;
}
input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 1px solid #08244C;
  outline: none;
  margin-right: 5px;
  left: 31px;
  bottom: 11px;
}

input[type="checkbox"]:checked {
    background-color: #08244C; /* Lisa taustavärv, kui märkeruut on valitud */
    border-color: #08244C; /* Lisa piirjoonivärv, kui märkeruut on valitud */
}
.product-modal .woocommerce-product-gallery__image--thumbnail {
    display: none !important;
}

.owl-next{
	position: relative !important;
  display: inline-block !important;
  background-color: #022B65 !important;
  color: #fff !important;
  border: none !important;
  padding: 10px 20px !important;
  font-size: 16px !important;
  transform: skew(-20deg)!important;
  overflow: hidden !important;
  float: right !important;
  width: 50px;
}
.owl-prev{
	position: relative !important;
  display: inline-block !important;
  background-color: #022B65 !important;
  color: #fff !important;
  border: none !important;
  padding: 10px 20px !important;
  font-size: 16px !important;
  transform: skew(20deg)!important;
  overflow: hidden !important;
  float: left !important;
  width: 50px; 
}
.owl-next span{
	display: block !important;
  transform: skew(20deg) !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.owl-prev span{
	display: block !important;
  transform: skew(-20deg) !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.owl-nav {
	margin-bottom:40px ;
}
.title-and-button{
    display: grid;
    flex-wrap: wrap;
}
.title-and-button .col-3{
	padding:0px !important;
}
.title-and-button .col-9{
	padding:0px !important;
}

.owl-carousel .owl-item img {
    display: block !important;
    width: 100% !important;
    height: 577px ;
    object-fit: contain ;
}


.woocommerce div.product .product_title {
  width: 100% !important;
 
}

@media (max-width: 991px) { 
      .contact-left {
          display: none !important;
      }
	  .contact-image img {
  width: 424px !important;
}

  }
  
  @media (min-width: 768px) and (max-width: 991px) {
    .finished-image-container{
		width:50% !important;
		min-height: 220px !important;
	}
	.hero-img img{
		display:none;
	}
	.klaasplast-hero-content {
  position: absolute;
  top: 0px !important;
  left: 60px;
}
.logo-section{
	left:-24%;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: #022B65 !important;
  position: absolute;
  top: -5px;
  background: white;
  width: 94%;
  left: 5px;
}
  }
  
.wpcf7 form.sent .wpcf7-response-output {
  border-color: #022B65 !important;
  position: absolute;
  bottom: -63px;
  background: white;
}


.wc-block-components-checkout-step__heading h2{
  color: #022B65 !important;
  font-family: 'Hanken Grotesk' !important;
  font-size: 23px !important;
  font-weight: 700 !important;
}


.wc-block-components-checkout-step__description {
  display: none;
}
.wc-block-components-form .wc-block-components-text-input input:autofill + label, .wc-block-components-form .wc-block-components-text-input.is-active label, .wc-block-components-text-input input:autofill + label, .wc-block-components-text-input.is-active label {
  top: 0;
  transform: translateY(4px) scale(.75);
  color: #022B65;
}
.wc-block-components-form .wc-block-components-text-input input[type="email"], .wc-block-components-form .wc-block-components-text-input input[type="number"], .wc-block-components-form .wc-block-components-text-input input[type="password"], .wc-block-components-form .wc-block-components-text-input input[type="tel"], .wc-block-components-form .wc-block-components-text-input input[type="text"], .wc-block-components-form .wc-block-components-text-input input[type="url"], .wc-block-components-text-input input[type="email"], .wc-block-components-text-input input[type="number"], .wc-block-components-text-input input[type="password"], .wc-block-components-text-input input[type="tel"], .wc-block-components-text-input input[type="text"], .wc-block-components-text-input input[type="url"] {
 font-weight: 300 !important;
    font-size: 16px !important;
    color: #022B65 !important;
}

.wc-block-components-form .wc-block-components-text-input.is-active input[type="email"], 
.wc-block-components-form .wc-block-components-text-input.is-active input[type="text"],
.wc-block-components-form .wc-block-components-text-input input[type="text"],
.wc-block-components-form .wc-block-components-text-input input[type="tel"]
 {
  border-top: none !important;
  border-radius: 0px !important;
  border-right: none !important;
  border-left: none !important;
  border-bottom: 1px solid #08244c !important; 
}
.wc-blocks-components-select .wc-blocks-components-select__select {
  border-top: none !important;
  border-radius: 0px !important;
  border-right: none !important;
  border-left: none !important;
  border-bottom: 1px solid #08244c !important;
}
.wc-block-components-checkbox .wc-block-components-checkbox__mark {
  fill: white !important; 
}

.wc-block-components-checkbox .wc-block-components-checkbox__input[type="checkbox"]{
  background: #022B65 !important; 
}
.wc-block-components-radio-control .wc-block-components-radio-control__input {
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: 1px solid #022B65 !important;
  border-radius: 4px !important;
  cursor: pointer;
  display: inline-block;
  height: 1.5em;
  left: 16px;
  margin: inherit;
  min-height: 24px;
  min-width: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-45%);
  width: 1.5em;
}

.wc-block-components-radio-control .wc-block-components-radio-control__input:checked {
  border: 1px solid #022B65 !important;
  background-color: #022B65;
}
.wc-block-components-radio-control .wc-block-components-radio-control__input:checked::before {
  background: none !important;
  content: "\2713" !important;
  color: #fff !important;
}
.attribute-row span {
  text-align: left;
  width: 100%;
  margin-left: 4px !important;
  font-size: 14px;
  line-height: 26px;
}

/* Kõikidel kategooriatel peale 18: attribute-row span margin-left 0 */
.product:not([data-in-category-18="1"]) .attribute-row span {
  margin-left: 0 !important;
}
.wc-block-components-radio-control .wc-block-components-radio-control__input:checked::before {
  background: none !important;
  border-radius: 0px !important;
  top: 27% !important;
}

.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted, .wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted {
  border-radius: 0px !important;
  box-shadow: inset 0 0 0 1.5px currentColor;
}
.wp-block-woocommerce-checkout-order-summary-block,
.wp-block-woocommerce-checkout-order-summary-totals-block,
.wc-block-components-totals-wrapper,
.wc-block-components-totals-wrapper{
  border: none !important;
}
.wc-block-components-radio-control__description-group > span, .wc-block-components-radio-control__label-group > span{
	width:56% !important;
}
.wc-block-components-radio-control-accordion-content {
  padding: 26px 16px !important;
  width: 85% !important;
}

.wc-block-components-order-summary-item{
  padding-top: 0;
  display: block !important;
}
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-formatted-money-amount {
  font-weight: 700 !important;
  font-size: 18px !important;
  color: #022B65 !important;
}
.wc-block-components-product-price {
  position: relative !important ;
  bottom: -6px !important;
}
.wc-block-components-order-summary .wc-block-components-order-summary-item__individual-prices {
  display: none !important;
}

.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title .wc-block-components-checkout-order-summary__title-text {
  font-weight: 700 !important ;
  font-family: 'Playfair Display' !important ;
  color: #022B65 !important ;
  font-size: 42px !important ;
}
.wc-block-checkout__sidebar .wc-block-components-product-name {
  font-weight: 300 !important ;
  font-family: 'Hanken Grotesk' !important ;
  Font-size: 18px !important ;
}
.wc-block-components-order-summary .wc-block-components-order-summary-item__image {
  width: 102px !important;
}
.wc-block-components-order-summary .wc-block-components-order-summary-item__image > img {
  max-width: 102px !important;
  width: 102px !important;
}
.wc-block-checkout__sidebar .wc-block-components-totals-footer-item {
  padding: 10px 27px !important;
  background-color: #F9F4E8 !important;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  font-weight: 400 !important;
  color: #022b65 !important;
  font-size: 16px !important;
  line-height: 32px !Important;
}
.wc-block-components-order-summary .wc-block-components-order-summary-item__quantity {
  color: #fff !important;
  line-height: 1;
  white-space: nowrap;
  font-size: 12px !important;
  font-weight: 400 !important;
  font-family: 'Hanken Grotesk' !important;
  background-color: #E38F11 !important;
}
.wc-block-components-order-summary .wc-block-components-order-summary-item__quantity {
  border: 0px !important;
height: 22px !important;
  min-width: 20px;
}
.wc-block-components-totals-item__label {
  font-size: 16px !important;
  font-family: 'Hanken Grotesk' !important;
  color: #022b65 !important;
  font-weight: 300 !important;
}
.wc-block-components-radio-control__description-group > span, .wc-block-components-radio-control__label-group > span, .wc-block-components-checkbox .wc-block-components-checkbox__label, .wc-block-components-checkbox > spa {
  display: table-cell;
  font-size: 16px !important;
  color: #022b65 !important;
  font-weight: 300  !important;
}

.wc-block-checkout__shipping-option .wc-block-components-radio-control__option {
  background-color: #F9F4E8 !important;
}
.wc-block-components-radio-control--highlight-checked, .wc-block-components-radio-control--highlight-checked div.wc-block-components-radio-control-accordion-option{
  background-color: #f9f4e8 !important;
}
.wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row {
  justify-content: center !important;
}
.wc-block-components-checkout-return-to-cart-button {
  display: none !important;
}
.wc-block-checkout__actions_row button {
  min-height: 3em;
  background-color: #022b65 !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  border: none !important;
  width: 400px !important;
}
.wc-block-checkout__terms.wc-block-checkout__terms--with-separator {
  border-top: none !important;
  padding-top: 0px !important;
  color: #022b65 !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  font-family: 'Hanken Grotesk' !important;
}
.wc-block-checkout__terms span a{
	color:#022B65 !important;
	font-weight: 700;
}
.approve .wc-block-components-checkbox label span {
    padding-top: 5px !important;
}
.wc-block-components-checkbox .wc-block-components-checkbox__label, .wc-block-components-checkbox > span {
  line-height: 19px !important;
}
.wc-block-components-radio-control__label-group .wc-block-components-radio-control__secondary-label {
  min-width: 50%;
  text-align: right;
  vertical-align: middle !important;
}

.wc-block-checkout__shipping-option .wc-block-checkout__shipping-option--free, .wc-block-components-formatted-money-amount {
  text-transform: uppercase;
  font-weight: 400 !important;
}
.wc-block-components-totals-coupon__form {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
}

.wc-block-components-totals-coupon__input {
    width: 70% !important;
}

.wc-block-components-totals-coupon__button {
    width: 30% !important;
    text-align: center !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    background-color: #A5C4B7 !important;
    border: none !important;
    color: #fff !important;
    text-transform: lowercase !important;
    transform: skewX(-22deg) !important;
}

.wc-block-components-totals-coupon__button:disabled {
    background-color: #A5C4B7 !important;
    opacity: 0.6 !important;
}

.wc-block-components-totals-coupon__form .wc-block-components-button__text {
    transform: skewX(22deg) !important;
}

.wc-block-components-totals-coupon__input input {
    border-top: none !important;
    border-radius: 0px !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid #08244C !important;
}
.woocommerce-notices-wrapper{
	width:100% !important;
	display:none;
}
.woocommerce-message {
 background-color: #F9F4E8 !important;
  color: #515151 !important;
  border-bottom: 1px solid #022B65 !important;
  border-top: none !important;
  line-height: 33px !important;
}
.woocommerce-message::before {
  content: "\e015";
  color: #022B65 !important;
}
.wc-forward{
  font-weight: 400 !important;
  border-radius: 0px !important;
  color: #fff !important;
  background-color: #022B65  !important;
 
}

.woocommerce-message {
  border-top-color:none;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: #022b65 !important;
  color: #fff !important;
  font-weight: 700 !important;
}
.woocommerce nav.woocommerce-pagination ul {
  padding: 10px 20px!important;
  border: none !important;
  border-right: none !important;

}
.page-numbers{
color:#022b65;
}
.woocommerce nav.woocommerce-pagination ul li {
  border-right: none !important;
}

.variations .label label {
  margin-right: 10px !important;
}
article h1 {
    display: none;
}
.wc-block-components-product-metadata__description{
	display:none;
}
.wc-block-components-totals-coupon__input input:focus {
    border: none;
    outline: none;
}
.wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__label {
  display: initial !important;
}

.wc-block-components-checkout-order-summary__content{
	display:block !important;
}
.wc-block-components-checkout-order-summary__title span{
	display:none !important;
}
.wc-block-components-checkout-order-summary__title svg{
	display:none !important;
}
.inventory-table th:nth-child(4), .inventory-table td:nth-child(4) {
  width: 20%;
  text-align: right;
}

.thankyou-hero-video {
  width: 100%;
  height: 355px !important;
  object-fit: cover;
  display: block;
}

.video-container {
    position: relative;
    width: 100%;
    height: 300px;
}

.thankyou-hero-video {
    width: 100%;
    height: 300px;
    object-fit: cover; /* Tagab, et video katab ala ilma moonutusteta */
    display: block;
}

.video-overlay-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 800px;
    display: flex;
    align-items: center; /* Vertikaalne tsentreerimine */
}

.video-overlay-container .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Sama polsterdus nagu kassa lehel */
}

.video-overlay-text {
    color: #fff; /* Valge tekst */
    text-align: left;
}

.video-overlay-text h1 {
    font-size: 36px;
    font-weight: 700; /* Sama, mis kassa lehe .page-title */
    margin: 0 0 10px;
    color: #fff; /* Valge, ilma varjuta */
}

.video-overlay-text p {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    color: #fff; /* Valge, ilma varjuta */
}

/* Mobiilne stiil */
@media only screen and (max-width: 768px) {
    .video-overlay-text h1 {
        font-size: 24px;
    }
    .video-overlay-text p {
        font-size: 16px;
    }
    .video-overlay-container .container {
        padding: 0 15px;
    }
		.page-title-area {
  padding-top: 30px !important;
} 
}
.woocommerce-thankyou-order-received{
	display:none;
}
.woocommerce-order{
	margin-top:150px;
}
.woocommerce ul.order_details{
	padding:0px !important;
	border-bottom: 1px solid #022B65;
	padding-bottom:40px !important;
}
.woocommerce ul.order_details li {
  text-transform: capitalize !Important;
  border-right: none !important;
  font-weight: 400 !important;
  font-size: 23px !important;
  color: #000;
}
.woocommerce ul.order_details li strong {
  text-transform: capitalize !Important;
  border-right: none !important;
  font-weight: 400 !important;
  font-size: 23px !important;
  color: #000;
}
.woocommerce ul.order_details li strong {
  font-size: 23px !important;
  color: #022B65 !Important;
  font-weight:700 !Important;
}
.woocommerce-order-overview__email, .woocommerce-order-overview__total{
	display:none !important;
}
.woocommerce-order-details__title{
	display:none !important; 
}

.back-to-home{
  display: inline-block;
  padding: 10px 40px !important;
  padding-right: 40px;
  padding-left: 40px;
  color: #fff;
  background-color: #08244C !important;
  border: 1px solid #08244C !important;
  cursor: pointer;
  transform: skew(-20deg);
  overflow: hidden;
  text-align: center;
  border-radius: 0 !important;
  width: 146px;
  font-size: 16px !important;
  font-weight: 400 !important;
  margin: 60px auto;
}
.back-to-home span{
	 transform: skew(20deg);
	 display:block;
}
.home-button-container {
    margin-top: 20px;
    text-align: center; 
}
.woocommerce .woocommerce-customer-details address {
  border: none !important;
}
.woocommerce-column__title{
	color: #08244C !important;
}
.woocommerce table.shop_table td {
  border-top: none !important;
}
.woocommerce table.shop_table {
  border: none !important;
}
.woocommerce table.shop_table tfoot th {
  font-weight: 700;
  border-top: none !important;
}
/* Toote pildi stiilid */
.order-item-image {
   width:102px; /* Kohanda pildi suurust vastavalt vajadusele */
    height: 102px !important;
    margin-right: 10px; /* Vahe pildi ja nime vahel */
    vertical-align: middle;
	object-fit: cover;
}

/* Koguse stiilid hinna all */
.woocommerce-table__product-total .product-quantity {
    display: block; /* Tagab, et kogus on uuel real */
    margin-top: 5px; /* Väike vahe hinna ja koguse vahel */
    font-weight: normal; /* Kohanda vastavalt oma teema stiilile */
}

/* Mobiilne stiil */
@media only screen and (max-width: 768px) {
	table.shop_table {
  display: grid !important;
}
	.order-item-image {
  width: 100%!important;
  height: 221px !important;
  margin-right: 0px!important;
  vertical-align: middle;
  object-fit: cover;
  margin-bottom: 30px!important;
}
	.woocommerce-table__product-total .product-quantity {
  bottom: 0px !important;
}
.woocommerce-table__product-total .woocommerce-Price-amount {

  bottom: 0px !important;

}
    .order-item-image {
        max-width: 40px; /* Väiksem pilt mobiilis */
    }
    .woocommerce-table__product-total .product-quantity {
        font-size: 14px; /* Väiksem fonte mobiilis */
    }
	.woocommerce-table__product-name a{
	position: relative;
 left: 0px !important;
  bottom: 0px !important;
	}
.wc-item-meta {
  position: relative;
  left: -41px !important;
  bottom: -12px !important;
}
	.woocommerce table.shop_table td {
  border-top: 1px solid rgba(0,0,0,.1);
  padding: 9px 12px;
  vertical-align: middle;
  line-height: 1.5em;
  width: 356px !important;
}
.woocommerce-table--order-details.shop_table.order_details tbody tr.woocommerce-table__line-item.order_item {
  border-bottom: 1px solid #022B65;
  display: grid !important;
}
}
.wc-item-meta {
  position: relative;
  left: 98px ;
  bottom: 77px;
}
.woocommerce-table__product-name a{
	position: relative;
  bottom: 43px;
  left: 26px;
  color:#000 !important;
}
.woocommerce-table__product-total.product-total {
    text-align: right; 
	color: #022B65;
	font-size: 23px;
	font-weight:700;
}

/* Tagab, et elemendid ei lähe segamini */
.woocommerce-table__product-total .woocommerce-Price-amount {
    display: block; /* Hind eraldi real */
	position: relative;
	bottom:50px;
	margin-right:20px;
}

.woocommerce-table__product-total .product-quantity {
  display: block;
  margin-top: 5px;
  position: relative;
  bottom: 50px;
  border: 1px solid #08244C !important;
  width: 128px;
  float: right;
  text-align: center;
  transform: skew(-20deg);
}
.woocommerce-table__product-total .product-quantity span{
	display:block !important;
	transform: skew(20deg) !important;
}
/* Mobiilne stiil */
@media only screen and (max-width: 768px) {
    .woocommerce-table__product-total .product-quantity {
        font-size: 14px;
    }
}

/* Joonda tfoot pealkirjad vasakule ja väärtused paremale */
.woocommerce-table--order-details.shop_table.order_details tfoot th {
    text-align: left; /* Pealkirjad vasakule */
}

.woocommerce-table--order-details.shop_table.order_details tfoot td {
    text-align: right; /* Väärtused paremale */
}

/* Veendu, et väiksem tekst (nt shipped_via) järgib joondust */
.woocommerce-table--order-details.shop_table.order_details tfoot td small {
    display: block; /* Eraldi reale */
    text-align: right; /* Paremal */
}
.woocommerce-table--order-details.shop_table.order_details tfoot th.order-actions--heading,
.woocommerce-table--order-details.shop_table.order_details tfoot th.order-actions--heading + td {
    display: none;
}
.woocommerce-table--order-details.shop_table.order_details thead {
    display: none;
}
/* Ülekirjuta border-collapse ja lisa border-bottom */
.woocommerce-table--order-details.shop_table.order_details tbody {
    border-collapse: collapse; /* Muuda collapse, et piirjooned toimiksid */
}

.woocommerce-table--order-details.shop_table.order_details tbody tr.woocommerce-table__line-item.order_item {
    border-bottom: 1px solid #022B65;
}
.nav-tabs {
  border-bottom: none;
  justify-content: center !important;
  margin-bottom: 14px;
  border-bottom: 1px solid #08244C;
  padding-bottom: 14px;
}
.nav-tabs .nav-item {
  margin-bottom: -1px;
  margin-left: 5px;
  margin-right: 5px;
}
.nav-tabs .nav-link {
  border:none;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  color: #08244C;
  font-weight: 400;
  padding: 10px 20px;
}
.nav-tabs .nav-link.active {
  color: #fff;
  background-color: #022B65 !important;
  border: none !important;
  border-radius: 0px;
  padding: 10px 20px;
  transform: skew(-22deg); /* Kallutame nuppu */
}

.nav-tabs .nav-link {
  display: inline-flex; /* Tekst joondatakse korralikult */
  align-items: center;
  border: none;
  border-radius: 0 !important;
  color: #08244C !important;
  font-weight: 400 !important;
}

.nav-tabs .nav-link.active {
  background-color: #022B65 !important;
  color: #fff !important;
  border: none !important;
  padding: 10px 20px !important;
  transform: skew(-22deg) !important;
  display: inline-flex !important;
  align-items: center !important;
}

.nav-tabs .nav-link.active span {
  transform: skew(22deg) !important;
  display: inline-block !important;
}
.cdm-sale-price {
    color: red !important; /* Tagab, et hind oleks punane */
}
.product-attribute-list {
    padding-left: 0; /* Eemaldab vasakpoolse sisemise marginaali */
    margin-bottom: 0; /* Eemaldab lõppemismarginaali */
    list-style-type: disc; /* Kui soovite loendipunkte */
    text-align: right; /* Joondab loendipunktid paremale */
}

.product-attribute-list li {
    margin-bottom: 5px; /* Lisab vahe iga värvi vahele */
}

.product_title {
    display: flex;
    
    height: 68px;
    line-height: 1.4;
    text-align: left;
    overflow: hidden;
}

.product_title a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%; /* Täidab vanemelemendi */
    text-transform: capitalize;
}

.price p {
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.price {
    text-align: left !important;
    color: #000;
    font-family: 'Hanken Grotesk';
    font-weight: 400;
    font-size: 16px;
}

.omadused {
    width: 100%;
}

.title-and-button {
    display: flex;
    align-items: flex-start;
}

.title-and-button .col-7 {
    padding: 0px;
    display: flex;
    align-items: flex-start;
}

.title-and-button .col-5 {
    padding: 0px;
    display: flex;
    align-items: flex-start;
}

/* Tootenimi alati joondatud ülemisse serva */
.title-and-button .product_title {
    margin-top: 0;
    margin-bottom: 0;
    align-self: flex-start;
}

/* Kategooria 18: Lisainfo nupp on alla joone (nagu Osta), pealkirja kõrval tühi – peida col-5 */
.product[data-in-category-18="1"] .title-and-button .col-5 {
    display: none;
}

/* Kategooria 18: tootenimi 100% laiuselt */
.product[data-in-category-18="1"] .title-and-button .col-7 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
}

.product[data-in-category-18="1"] .title-and-button .col-7 .product_title {
    width: 100%;
}

/* color-box-wrapper: nupp (product-card-actions-inline) alati põhjas */
.product-attributes .color-box-wrapper {
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.product-attributes .color-box-wrapper .product-card-actions-inline {
    margin-top: auto;
}

/* product-actions-column: Osta nupp alati põhjas (teised kategooriad) */
.product-attributes .product-actions-column {
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.product-attributes .product-actions-column .additional-info-button {
    margin-top: auto;
}

.product-card-actions-inline {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 8px;
}

.product-card-actions-inline .additional-info-button.category-18 {
    position: relative;
    top: -10px;
}

.additional-info-button {
    background-color: #08244C;
    color: white;
    border: none;
    padding: 5px 30px;
    cursor: pointer;
    font-size: 16px;
    float: right;
    height: 37px;
    transform: skewX(-22deg);
    position: relative;
    right: 10px;
    top: 29px; /* Vaikimisi väärtus, kui ei ole kategoorias 18, 316, 213 või 318 */
    white-space: nowrap;
}
@media only screen and (max-width: 600px) {
	body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
  width: 50% !important;
}
	.page-title-area img{
		display:none !important ;
	}
	.page-title{
		line-height:20px !important ;
	}
  .additional-info-button.category-214  {
    top: 19px !important;
  }
}
.additional-info-button.category-18 {
    top: -6px; /* Kategoorias 18 */
}

.additional-info-button.category-316 {
    top: 0px; /* Kategoorias 316, 213 ja 318 */
}

.additional-info-button span {
    transform: skewX(22deg);
    display: inline-block;
    white-space: nowrap;
}

.additional-info-button:hover {
    background-color: #064080;
}

.product-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.product-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 700px;
}

.product-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.product-modal-close:hover,
.product-modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.product-modal-content {
    padding: 20px; /* Veenduge, et modaalakna sisu oleks piisavalt polsterdatud */
    box-sizing: border-box; /* Tagab, et polsterdus ei mõjuta modaalakna üldlaiust */
}

.modal-body {
    display: flex;
    align-items: center;
    margin-bottom: 33px;
}

.modal-body .col-md-12 {
    margin-bottom: 40px;
}

.modal-images {
    flex: 1;
    margin-right: 20px;
}

.modal-text h2 {
    margin-bottom: 10px;
}

.modal-text p {
    font-size: 14px;
    margin-top: 3px !important;
}

.modal-text {
    max-width: 100%;
    overflow-wrap: break-word; /* Lubab tekstil murduda reavahetuse kohalt, kui see on liiga lai */
}

@media only screen and (max-width: 600px) {
    .additional-info-button {
        top: 7px !important;
    }
    .modal-contact label {
        width: 100%;
    }
    .product-modal-content {
        background-color: #fff;
        margin: 15% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 98%;
    }
    .modal-text {
        height: 120px !important;
        margin-bottom: 39px;
    }
    .product_title {
        font-size: 14px !important;
    }
    .stock-ribbon, .gift-ribbon {
        width: 126px !important;
    }
}

.variation-colors {
    width: 100%;
    display: flex;
    padding-top: 7px;
}

.color-box {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    margin-right: 10px;
    cursor: pointer;
}

.color-box.blue {
    background-color: #003384;
    border: 1px solid #003384;
}

.color-box.grey {
    background-color: #D9D9D9;
    border: 1px solid #D9D9D9;
}

.color-box.white {
    background-color: #fff;
    border: 1px solid #D9D9D9;
}

.color-box.black {
    background-color: #464A4B;
    border: 1px solid #464A4B;
}

.color-box.lightblue {
    background-color: #6093ac;
    border: 1px solid #6093ac;
}

.color-box:not(.blue):not(.grey):not(.white):not(.black):not(.lightblue) {
    background-color: black;
    border: 2px solid black;
    opacity: 0.7;
}

.color-box:hover {
    opacity: 1;
}

.product-image {
    position: relative; /* Ensure the ribbon is positioned relative to this container */
    width: 100% !important;
    height: auto;
    cursor: pointer;
    margin-bottom: 10px;
}

.variation-colors {
    display: flex;
    padding-left: 0px;
    padding-top: 7px;
    justify-content: right;
}

.color-box-wrapper {
    position: relative;
    left: 0;
    bottom: 3px;
}

.product-attributes .col-8 {
    padding-left: 0px;
    padding-right: 10px;
}

.product-attributes .col-4 {
    padding: 0px;
}

.color-box {
    border-radius: 50%;
    margin: 2px;
    display: inline-block;
    position: relative;
}

.color-box:hover .color-name {
    display: block;
}

.color-name {
    display: none;
    position: absolute;
    top: 20px; /* Muutke vastavalt vajadusele */
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px;
    border-radius: 3px;
    white-space: nowrap;
    z-index: 100;
}

.product_title.entry-title {
    cursor: pointer; /* Muudame kursori kuju käeks */
}

.stock-ribbon, .gift-ribbon {
    position: absolute;
    top: 11px;
    left: 215px;
    background-color: #022B65;
    color: #fff;
    padding: 12px 10px;
    font-size: 14px;
    font-weight: bold;
    transform-origin: 0 0;
    z-index: 10;
    width: 150px;
    text-align: center;
    transform: skewX(-22deg);
}

.stock-ribbon span, .gift-ribbon span {
    transform: skewX(22deg);
    display: inline-block;
}

@media (max-width: 600px) {
    .additional-info-button {
        padding: 5px 21px !important;
       
    }
    .product-attributes span {
        font-size: 14px;
        line-height: 21px;
    }
    .product-attributes strong {
        font-size: 14px;
    }
	.additional-info-button.category-18 {
    top: 0px !important; /* Kategoorias 18 */
}
}
@media (max-width: 600px) {
    .additional-info-button.category-214 {
        top: 106px !important;
    }
	.video-overlay-container::before {
  height: 630px !Important;

}
}

.woocommerce table.shop_attributes td {
    font-style: normal !important;
}

#esto_calculator img{
	max-width: 58px !important;
}
.wc-block-components-order-summary-item .price{
	text-align:right !important;
}
#wc-guest-checkout-notice{
	display:none !Important;
}
/* Add the overlay using a pseudo-element */
.video-overlay-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.21); /* Light black overlay with 30% opacity */
    z-index: 0; /* Place overlay above the video but below other content */
}

.woocommerce-notices .woocommerce-message {
  display: flex !important;
}

.woocommerce-message::before {
position: initial !important;
  margin-right: 20px !important;

}
.custom-logo{
	width:50% !Important;
}
#logo-image{
	width:150px !important;
}
.info-img {
  -webkit-mask-image: url('/wp-content/themes/awero/images/mask.png');
  mask-image: url('/wp-content/themes/awero/images/mask.png');
  -webkit-mask-size: 300px auto;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: left;
}
.info-mask img {
  width: 100%;
  position: relative;
  top: 40px;
  height: 100% !important;
  left: 90px;
}
.info-mask{
  padding-top: 68px !important;
  padding-bottom: 44px !important;
}
#info2 {
  background: #FFFDF5 !important;
    background-position-x: 0%, 0%;
    background-position-y: 0%, 0%;
  background-position-x: 0%, 0%;
  background-position-y: 0%, 0%;
  padding-top: 30px;
  padding-bottom: 10px;
  background-position: right top, right top;
  overflow: hidden;
}
.section-image {
    position: relative;
}
.product-shape {
   position: absolute;
  right: 0;
  z-index: 0;
  width: 50%;
  max-width: 700px;
  opacity: 1;
}
.contact-background{
    background-color:#FFFDF5;
}
#video {
    background-color: #08244C;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
}
.custom-video {
    width: 1110px;
    height: auto;
    max-width: 100%;
}
.info-img {
  width: 80% !important;
  max-height: 400px !important;
  object-fit: cover;
}

.sec-padding {
    padding: 50px 0;
}
.skew-wrapper {
  position: relative;
  transform: skewX(-22deg);
  overflow: hidden;
  margin: 0 auto;
  background-color: #08244C;
  width: 80%;
  padding-top: 30px;
  padding-bottom: 30px;
}
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    transform: skewX(22deg);
    padding: 0px 75px;
    background-color: transparent;
}
.company-text {
}
.logo img {
    display: block;
    max-width: 100%;
}
.text {
    margin: 0;
}
@media (max-width: 767.98px) {
    .news-card:nth-child(n+2) {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .contact-left {
        display: none !important;
    }
    .contact-content .row {
        display: flex;
        flex-wrap: nowrap;
    }
    .contact-center, .contact-right {
        flex: 1 1 50%;
        max-width: 50%;
        padding: 15px;
    }
    .contact-center {
        border-right: 1px solid #ddd;
    }
    #logo-and-text p {
        width: 100%;
    }
    .image-wrapper img {
        width: 662px;
        position: relative;
        top: 160px;
        height: 100% !important;
        right: 94px;
    }
    .info-shape img {
        position: absolute;
        left: 52%;
        top: 74px;
        width: 100%;
    }
    .logo-section {
        left: -24%;
    }
    #mobileMenuContent {
        background: url('https://awero.bigeye.ee/wp-content/uploads/2024/06/mob-men-shape.png');
        background-position-y: 0%;
        background-repeat: repeat;
        background-size: auto;
        background-size: 100%;
        width: 100%;
        background-repeat: no-repeat;
        background-position-y: 207px;
    }
    .scrolled-other {
        background-color: #FFFDF5 !important;
    }
}

 .container-fluid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
    }

    @media (max-width: 1200px) {
        .container-fluid {
            max-width: 100%;
        }
    }

    .products {
        display: flex;
        flex-wrap: wrap;
    }

    .products .product {
        padding: 15px;
        width: 100%;
    }

    /* Tabides olevad tooted: padding 0 */
    .tab-content .products .product {
        padding: 0 !important;
    }

    @media (min-width: 768px) {
        .products .col-md-4 {
            flex: 0 0 33.33%;
            max-width: 33.33%;
            padding: 15px;
        }
        .tab-content .products .col-md-4 {
            padding: 0 !important;
        }
    }

    @media (max-width: 767px) {
        .products .col-md-4,
        .products .col-sm-6 {
            flex: 0 0 100%;
            max-width: 100%;
            padding: 15px;
        }
        .tab-content .products .col-md-4,
        .tab-content .products .col-sm-6 {
            padding: 0 !important;
        }
    }

    .woocommerce-pagination {
        display: block;
        clear: both;
        width: 100%;
        margin-top: 30px;
        text-align: center;
    }

    .nav-tabs {
        border-bottom: 1px solid #08244C;
        justify-content: center;
        margin-bottom: 14px;
        padding-bottom: 14px;
    }

    .nav-tabs .nav-item {
        margin: 0 5px;
    }

    .nav-tabs .nav-link {
        border: none;
        color: #08244C;
        font-weight: 400;
        padding: 10px 20px;
        display: inline-flex;
        align-items: center;
    }

    .nav-tabs .nav-link.active {
        background-color: #022B65;
        color: #fff;
        border: none;
        padding: 10px 20px;
        transform: skew(-22deg);
    }

    .nav-tabs .nav-link.active span {
        transform: skew(22deg);
        display: inline-block;
    }

    .erilahendused {
        width: 80%;
        text-align: center;
        margin: 0 auto 40px;
        display: grid;
    }

    .hr {
        border-top: 1px solid #08244C;
        margin-bottom: 60px;
    }

    .product-image {
        width: 100%;
        height: auto;
        cursor: pointer;
    }

    .product-image img {
        height: 220px;
        object-fit: cover;
    }

    .variation-colors {
        display: flex;
        padding-top: 7px;
    }

    @media (max-width: 860px) {
        .product_title {
            font-size: 14px;
        }
    }

    @media (max-width: 759px) {
        .category-details {
            display: grid;
        }
    }
	
	#mobileMenuContent {
    background-color: #FFFDF5 !important;
	height:100vh;
}
        .navbar-nav.ml-auto {
            margin-left: auto;
        }
		.navbar-nav .menu-item{
			margin-right:20px;
		
			font-weight:400;
		}
        .navbar-toggler-icon {
            background-image: url('https://awero.ee/wp-content/uploads/2024/06/toggler.svg') !important;
        }
        .navbar-toggler.open .navbar-toggler-icon {
            background-image: url('https://awero.ee/wp-content/uploads/2024/06/close.svg') ;
        }
        #main-header {
            background-color: transparent;
            transition: background-color 0.3s;
        }
		.header-home {
    background-color: #08244C !important;
}

.header-other {
    background-color: #FFFDF5 !important;
}

        .scrolled-home {
            background-color: #08244C !important;
        }
        .scrolled-other {
            background-color: #FFFDF5 !important;
        }
        .sticky-header {
            position: -webkit-sticky;
            position: sticky;
            top: 0;
            width: 100%;
            z-index: 1030; /* Bootstrap's z-index for fixed/sticky navbar */
        }
        .navbar-toggler-icon.blue {
            background-image: url('https://awero.ee/wp-content/uploads/2024/06/hamburger-blue.svg') !important;
        }
        .no-scroll {
            overflow: hidden;
        }
		#mob-menu{
			display: flex;
			  list-style: none;
			  padding-left: 0px;
			  font-weight: 600;
		}
		.cart-button {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 45px;
}
/* Ainult esilehel muudab ostukorvi ikooni ja lingi valgeks */
.home .cart-button .cart-link {
    color: white !important; /* Lingitekst valgeks */
}

.home .cart-button .cart-icon {
    filter: brightness(0) invert(1); /* Muudab musta ikooni valgeks */
}

.cart-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.cart-text {
  margin-right: 8px;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Hanken Grotesk';
}
.cart-icon {
    width: 24px; /* Reguleeri vastavalt vajadusele */
    height: auto;
}

.cart-count {
  position: absolute;
  top: -10px;
  right: -13px;
  background-color: #E38F11;
  color: white;
  border-radius: 50%;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
}

.cart-count:empty {
    display: none; /* Kui ostukorvis pole tooteid, siis ei kuvata punast palli */
}

/* Header: navbar padding eemaldamine desktopis */
@media (min-width: 992px) {
    #main-header .navbar,
    #main-header .navbar-expand-lg,
    #main-header .header-row-1.navbar,
    #main-header .header-row-2.navbar {
        padding: 0 !important;
    }
}
/* Header: 24px ülevalt (admin barist) ja alt (menüüst) */
#main-header .pt-lg-1 {
    padding-top: 24px !important;
    padding-bottom: 14px !important;
}
/* Header: rida 1 = logo + FiboSearch + ostukorv + menu right, rida 2 = menu left */
.header-row-1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
#main-header .header-row-1-inner {
    padding-left: 12px;
    padding-right: 12px;
}
@media (max-width: 991px) {
    #main-header .header-row-1-inner {
        padding-left: 8px;
        padding-right: 8px;
    }
}
@media (min-width: 992px) {
    #main-header .header-row-1-inner {
        padding-left: 12px;
        padding-right: 12px;
    }
    .header-row-1 {
        flex-wrap: nowrap;
    }
    .header-row-1-inner > .logo-section,
    .header-row-1-inner > .header-cart-menu-right {
        flex: 0 0 280px;
        max-width: 280px;
    }
    .header-row-1-inner > .logo-section {
        left: auto;
        justify-content: flex-start;
    }
    .header-row-1-inner > .header-cart-menu-right {
        justify-content: flex-end;
    }
    .header-row-1 .header-search {
        flex: 1 1 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .header-row-1 .header-search .dgwt-wcas-search-wrapp,
    .header-row-1 .header-search form {
        width: 100% !important;
        max-width: 100%;
    }
}
.header-cart-menu-right {
    display: flex;
    align-items: center;
}
.header-cart-menu-right .navbar-nav {
    margin-left: 0;
}
.header-search-mobile {
    max-width: 140px;
}
.header-search-mobile .dgwt-wcas-search-wrapp,
.header-search-mobile form {
    width: 100%;
}
@media (max-width: 991px) {
    #main-header .mobile-search-row {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
        background-color: inherit;
    }
    #main-header .mobile-search-row .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
    }
    #main-header .mobile-search-row .header-search-mobile {
        max-width: 100%;
        margin: 0;
    }
}
/* FiboSearch otsinguvälja stiil headeris - eemalda border/glow */
.header-search .dgwt-wcas-search-wrapp,
.header-search .dgwt-wcas-sf-wrapp,
.header-search .dgwt-wcas-search-form {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    border-radius: 2px !important;
}
.header-search .dgwt-wcas-sf-wrapp,
.header-search .dgwt-wcas-search-wrapp {
    min-height: 48px !important;
}
.header-search .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input,
.header-search .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input:focus,
.header-search .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input:hover {
    height: 48px !important;
    min-height: 48px !important;
    padding-left: 50px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    border-radius: 2px !important;
}
.header-search .dgwt-wcas-search-wrapp:focus,
.header-search .dgwt-wcas-search-wrapp:focus-within,
.header-search .dgwt-wcas-sf-wrapp:focus,
.header-search .dgwt-wcas-sf-wrapp:focus-within {
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
    border-radius: 2px !important;
}
/* FiboSearch pirx compact - eemalda padding */
.dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp {
    padding: 0 !important;
}
.dgwt-wcas-style-pirx.dgwt-wcas-search-filled .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit,
.dgwt-wcas-style-pirx-compact.dgwt-wcas-search-filled .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit,
.dgwt-wcas-style-pirx.dgwt-wcas-active .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit,
.dgwt-wcas-style-pirx-compact.dgwt-wcas-active .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
    animation: none !important;
    left: 13px !important;
    right: auto !important;
    pointer-events: none !important;
}
/* FiboSearch - eemalda kõik animatsioonid */
.dgwt-wcas-search-wrapp *,
.dgwt-wcas-suggestions-wrapp *,
.dgwt-wcas-preloader {
    animation: none !important;
}
.dgwt-wcas-style-pirx .dgwt-wcas-preloader,
.dgwt-wcas-style-pirx-compact .dgwt-wcas-preloader {
    margin-right: 0;
    right: 20px !important;
    color: #fff !important;
}
.dgwt-wcas-style-pirx .dgwt-wcas-preloader svg,
.dgwt-wcas-style-pirx .dgwt-wcas-preloader svg path,
.dgwt-wcas-style-pirx-compact .dgwt-wcas-preloader svg,
.dgwt-wcas-style-pirx-compact .dgwt-wcas-preloader svg path {
    fill: #fff !important;
}
/* Teistel lehtedel headeris preloadri värv siniseks */
.header-other .header-search .dgwt-wcas-style-pirx .dgwt-wcas-preloader,
.header-other .header-search .dgwt-wcas-style-pirx-compact .dgwt-wcas-preloader {
    color: #022B65 !important;
}
.header-other .header-search .dgwt-wcas-style-pirx .dgwt-wcas-preloader svg,
.header-other .header-search .dgwt-wcas-style-pirx .dgwt-wcas-preloader svg path,
.header-other .header-search .dgwt-wcas-style-pirx-compact .dgwt-wcas-preloader svg,
.header-other .header-search .dgwt-wcas-style-pirx-compact .dgwt-wcas-preloader svg path {
    fill: #022B65 !important;
}
/* FiboSearch aktiivne olek (tulemused avatud) - jäta border-radius 2px */
.header-search .dgwt-wcas-search-filled .dgwt-wcas-sf-wrapp,
.header-search .dgwt-wcas-search-filled .dgwt-wcas-search-wrapp,
.header-search .dgwt-wcas-search-filled input.dgwt-wcas-search-input,
.header-search .dgwt-wcas-style-pirx.dgwt-wcas-search-filled .dgwt-wcas-sf-wrapp,
.header-search .dgwt-wcas-style-pirx.dgwt-wcas-search-filled input.dgwt-wcas-search-input {
    border-radius: 2px !important;
}
/* FiboSearch aktiivne olek (fokus + tulemused) - eemalda valge taust esilehel */
#main-header.header-home .header-search .dgwt-wcas-sf-wrapp,
#main-header.header-home .header-search .dgwt-wcas-search-wrapp,
#main-header.header-home .header-search .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp,
#main-header.header-home .header-search .dgwt-wcas-search-filled .dgwt-wcas-sf-wrapp {
    background: transparent !important;
}
/* Avalehel (tume taust) - placeholder ja ikoon valgeks */
#main-header.header-home .header-search .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input,
#main-header.header-home .header-search .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input:focus,
#main-header.header-home .header-search .dgwt-wcas-search-filled .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input,
#main-header.header-home .header-search-mobile .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input,
#main-header.header-home .header-search-mobile .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input:focus,
#main-header.header-home .header-search-mobile .dgwt-wcas-search-filled .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
}
#main-header.header-home .header-search input.dgwt-wcas-search-input::placeholder,
#main-header.header-home .header-search input.dgwt-wcas-search-input::-webkit-input-placeholder,
#main-header.header-home .header-search input.dgwt-wcas-search-input::-moz-placeholder,
#main-header.header-home .header-search input.dgwt-wcas-search-input:-ms-input-placeholder,
#main-header.header-home .header-search input.dgwt-wcas-search-input::-ms-input-placeholder,
#main-header.header-home .header-search-mobile input.dgwt-wcas-search-input::placeholder,
#main-header.header-home .header-search-mobile input.dgwt-wcas-search-input::-webkit-input-placeholder,
#main-header.header-home .header-search-mobile input.dgwt-wcas-search-input::-moz-placeholder,
#main-header.header-home .header-search-mobile input.dgwt-wcas-search-input:-ms-input-placeholder,
#main-header.header-home .header-search-mobile input.dgwt-wcas-search-input::-ms-input-placeholder {
    color: #fff !important;
    opacity: 1 !important;
}
.header-home .header-search .dgwt-wcas-search-submit .dgwt-wcas-ico-magnifier,
.header-home .header-search .dgwt-wcas-search-submit svg,
.header-home .header-search .dgwt-wcas-search-submit svg path {
    fill: #fff;
}
.header-home .header-search .dgwt-wcas-search-submit {
    color: #fff;
}
/* Teistel lehtedel (hele taust) - placeholder ja ikoon tumedaks */
.header-other .header-search .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input {
    color: #022B65;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid #022B65 !important;
    border-radius: 4px !important;
}
.header-other .header-search .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input::placeholder {
    color: rgba(2, 43, 101, 0.7);
}
.header-other .header-search .dgwt-wcas-search-submit .dgwt-wcas-ico-magnifier,
.header-other .header-search .dgwt-wcas-search-submit svg,
.header-other .header-search .dgwt-wcas-search-submit svg path {
    fill: #022B65;
}
.header-other .header-search .dgwt-wcas-search-submit {
    color: #022B65;
}
/* FiboSearch hindade padding */
.dgwt-wcas-sp {
    padding: 0 !important;
}
/* FiboSearch tulemuste loend - pildi konteiner */
.dgwt-wcas-si {
    width: 70px;
    display: block;
    height: 70px;
}
.dgwt-wcas-si img {
    background: none;
    border: none;
    border-radius: 2px;
    height: 70px;
}
/* FiboSearch tulemuste loend - hind toote nime alla, soodushind punane */
.dgwt-wcas-suggestion-product .dgwt-wcas-content-wrapp {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
}
.dgwt-wcas-suggestion-product .dgwt-wcas-meta {
    margin-top: 4px;
    text-align: left !important;
}
.dgwt-wcas-suggestion-product .dgwt-wcas-sp {
    display: flex !important;
    flex-direction: row-reverse !important;
    align-items: center !important;
    gap: 6px !important;
    justify-content: flex-start !important;
    padding: 0 !important;
}
.dgwt-wcas-suggestion-product .dgwt-wcas-sp ins,
.dgwt-wcas-suggestion-product .dgwt-wcas-sp ins * {
    color: #FF0000 !important;
    font-weight: 700 !important;
    font-size: 16px !important;
}
.dgwt-wcas-suggestion-product .dgwt-wcas-sp del {
    color: #666 !important;
    text-decoration: line-through !important;
}
/* FiboSearch suggestions wrapper */
.dgwt-wcas-open-pirx .dgwt-wcas-suggestions-wrapp {
    padding-bottom: 0 !important;
}
.dgwt-wcas-open-pirx-compact .dgwt-wcas-suggestions-wrapp {
    margin-top: 5px;
    border-radius: 2px;
}
.dgwt-wcas-has-headings .dgwt-wcas-suggestion-headline {
    pointer-events: none;
    display: block;
    font-weight: 700;
    white-space: nowrap;
    font-family: 'Hanken Grotesk';
}
.dgwt-wcas-has-headings .dgwt-wcas-suggestion-headline .dgwt-wcas-st {
    border: none !important;
    border-bottom: none !important;
}
/* FiboSearch "Vaata kõiki tooteid" link */
.dgwt-wcas-suggestion.dgwt-wcas-suggestion-more {
    justify-content: left !important;
}
.dgwt-wcas-suggestion-more {
    background: #E6EFFF !important;
    padding: 20px !important;
    padding-right: 60px !important; /* leave space for the right arrow */
    margin-top: 30px !important;
    color: #022665 !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-align: left !important;
    position: relative;
}

/* Arrow on the right side (20px from edge) */
.dgwt-wcas-suggestion-more::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('/wp-content/themes/awero/images/search-arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}
.dgwt-wcas-suggestion-more .dgwt-wcas-st-more {
    color: #022665 !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: lowercase;
    font-family: 'Hanken Grotesk';
}
.dgwt-wcas-suggestion-more .dgwt-wcas-st-more::first-letter {
    text-transform: uppercase;
}
.dgwt-wcas-suggestion-more .dgwt-wcas-st-more-total {
    display: none !important;
}
.header-row-2 {
    padding-top: 24px !important;
    padding-bottom: 0 !important;
}
.header-row-2 .header-menu-center {
    gap: 10px;
    margin-top: 7px;
}
.header-row-2 .header-menu-center .nav-item {
    display: inline-block;
}
.header-row-2 .header-menu-center .nav-link {
    padding: 0.25rem 0;
    white-space: nowrap;
}
/* Hero nähtav headeri all - lisada padding-top */
.home #hero {
    padding-top: 140px;
    min-height: 500px;
    height: 500px;
    display: flex;
    align-items: center;
}
body.admin-bar .home #hero {
    padding-top: 172px;
}
.home #hero .container.col-xxl-8 {
    width: 100%;
    height: 500px;
    min-height: 500px;
    display: flex;
    align-items: center;
}
.home #hero .row {
    width: 100%;
    height: 100%;
    align-items: center;
}
.home #hero .hero-content {
    margin-top: 0 !important;
}
@media screen and (max-width: 991px) {
    .home #hero {
        padding-top: 100px;
    }
    body.admin-bar .home #hero {
        padding-top: 132px;
    }
}
@media screen and (max-width: 782px) {
    body.admin-bar .home #hero {
        padding-top: 146px;
    }
}

 .page-title-area {
        position: relative;
  padding: 50px 0;
  background: #FFFDF5;
  overflow: hidden;
padding-top: 70px;
    }
.page-title-image {
  position: absolute;
  top: 164px;
  right: 0;
  width: 38%;
  height: auto;
}
    .page-title-area .container {
        position: relative;
        height: 100px; /* Võib vajadusel reguleerida */
        display: flex;
        align-items: flex-end; /* Joondab sisu konteineri alaossa */
    }

    .page-title {
        font-size: 42px;
        color: #022B65;
        margin: 0;
        font-weight: 700;
        text-align: left;
    }
	@media (max-width: 768px) {
  .cart-button {
    margin-right: 13px; /* Rakendub ainult mobiilivaates */
  }
  .category-name {
  width: 100% !important;
  font-size: 28px !important;
}
  .home-contact-right,
  .home-contact-left {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: wrap !important;
  }
}
.navbar-nav .menu-item-has-children {
    position: relative;
}

.navbar-nav .menu-item-has-children:hover > .sub-menu,
.navbar-nav .menu-item-has-children .sub-menu:hover {
    display: block;
}

.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    text-align: left; /* Tekst joondatakse vasakule */
    overflow: hidden;
}

.sub-menu li {
    width: 100%;
}

.sub-menu li a {
    display: block;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
    text-align: left; /* Kindlusta, et link on ka vasakule joondatud */
}

.sub-menu li a:hover {
    background: #E6EFFF;
}
.sub-menu li.current-menu-item > a,
.sub-menu li.current-menu-ancestor > a,
.sub-menu li.current_page_item > a,
.sub-menu li.current_page_ancestor > a {
    background: #E6EFFF;
}

.sub-menu span{
	color:#022B65 !important;
}

/* Header menu dropdown arrow for items with sub-items */
.navbar-nav .menu-item-has-children:not(.wpml-ls-item) > a::after {
    content: '';
    display: inline-block !important;
    width: 10px;
    height: 10px;
    margin-left: 6px;
    background-image: url('https://awero.ee/wp-content/themes/awero/images/arrow-down.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    position: relative;
}
.navbar-nav .menu-item-has-children:not(.wpml-ls-item):hover > a::after,
.navbar-nav .menu-item-has-children:not(.wpml-ls-item):focus-within > a::after,
.navbar-nav .menu-item-has-children:not(.wpml-ls-item).open > a::after {
    background-image: url('https://awero.ee/wp-content/themes/awero/images/arrow-up.svg');
}
.navbar-nav li:not(.wpml-ls-item):has(> .sub-menu) > a::after {
    content: '';
    display: inline-block !important;
    width: 10px;
    height: 10px;
    margin-left: 6px;
    background-image: url('https://awero.ee/wp-content/themes/awero/images/arrow-down.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    position: relative;
}
.navbar-nav li:not(.wpml-ls-item):has(> .sub-menu):hover > a::after,
.navbar-nav li:not(.wpml-ls-item):has(> .sub-menu):focus-within > a::after,
.navbar-nav li:not(.wpml-ls-item):has(> .sub-menu).open > a::after {
    background-image: url('https://awero.ee/wp-content/themes/awero/images/arrow-up.svg');
}
.navbar-nav .menu-item-has-children:not(.wpml-ls-item) > a,
.navbar-nav li:not(.wpml-ls-item):has(> .sub-menu) > a {
    cursor: pointer;
}

/* Esileht: valge nool */
#main-header.header-home .navbar-nav .menu-item-has-children:not(.wpml-ls-item) > a::after {
    filter: brightness(0) invert(1);
}

/* Teised lehed: sinine nool (default ikoon) */
#main-header.header-other .navbar-nav .menu-item-has-children:not(.wpml-ls-item) > a::after {
    filter: none;
}

/* WPML Language Switcher Dropdown Arrow */
.menu-item-has-children.wpml-ls-item > a::after,
.wpml-ls-item.menu-item-has-children > a::after {
    content: '';
    display: inline-block !important;
    width: 12px;
    height: 12px;
    margin-left: 8px;
    background-image: url('https://awero.ee/wp-content/themes/awero/images/arrow-down.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    transition: background-image 0.3s ease;
    position: relative;
}

.menu-item-has-children.wpml-ls-item:hover > a::after,
.wpml-ls-item.menu-item-has-children:hover > a::after,
.menu-item-has-children.wpml-ls-item:hover > a::after {
    background-image: url('https://awero.ee/wp-content/themes/awero/images/arrow-up.svg');
}

/* Dropdown ikoon valgeks avalehel, sinine mujal */
.home .menu-item-has-children.wpml-ls-item > a::after,
.home .wpml-ls-item.menu-item-has-children > a::after {
    filter: brightness(0) invert(1); /* Muudab musta ikooni valgeks */
}

.home .menu-item-has-children.wpml-ls-item:hover > a::after,
.home .wpml-ls-item.menu-item-has-children:hover > a::after {
    filter: brightness(0) invert(1); /* Hoveril ka valge */
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    transition: padding 0.3s ease-in-out;
    padding-top: 0px !important;
  }
}
.cart-button .cart-icon.pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
    #main-header {
        transition: all 0.3s ease-in-out;
        margin-top: 0px;
        min-height: 100px;
        background-color: #fff;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }
    /* Header alla nihutada kui WordPress admin bar on nähtav */
    body.admin-bar #main-header {
        top: 32px;
    }
    @media screen and (max-width: 782px) {
        body.admin-bar #main-header {
            top: 46px;
        }
    }

    #main-header.scrolled {
        margin-top: 0px;
        min-height: 76px;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    }
    @media (max-width: 991px) {
        #main-header .header-row-2.mobile-search-row {
            display: block !important;
        }
    }

    @media (min-width: 992px) {
        #main-header.scrolled .header-row-2.d-none.d-lg-block {
            display: none !important;
        }
        #main-header.scrolled.scroll-up .header-row-2.d-none.d-lg-block {
            display: block !important;
        }
        #main-header.scrolled .header-row-2.mobile-search-row {
            display: none !important;
        }
    }

    @media (min-width: 992px) {
        .navbar-expand-lg {
            transition: padding 0.3s ease-in-out;
            padding-top: 0px !important;
        }

        #main-header.scrolled .navbar-expand-lg {
            padding-top: 0px !important;
        }
		.mob-menu-bottom .navbar-nav {
	display: block ruby !important;

	}
    }

    @media (max-width: 991px) {
        #main-header .header-row-1 {
            padding-left: 16px !important;
            padding-right: 16px !important;
        }
    /* Mobiilis ära lase header-row-1 elementidel rea ümber murda */
    #main-header .header-row-1-inner {
        flex-wrap: nowrap !important;
    }

    /* Kindel järjekord: luup enne ostukorvi */
    #main-header .header-row-1-inner > .d-flex.align-items-center.ml-auto > .header-search-mobile {
        order: 1 !important;
    }
    #main-header .header-row-1-inner > .d-flex.align-items-center.ml-auto > .cart-button {
        order: 2 !important;
    }
    #main-header .header-row-1-inner > .d-flex.align-items-center.ml-auto > .navbar-toggler {
        order: 3 !important;
    }

    /* Ära lase pluginil peidetud (desktop) search'i ikooni mobiilis "välja hõljuda" */
    #main-header .header-row-1 .header-search.d-none {
        display: none !important;
    }

    /* FiboSearch submit/ikoon on tihti absolute'ga, seome selle õige konteineriga */
    #main-header .header-search-mobile {
        position: relative;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    #main-header .header-search-mobile .dgwt-wcas-search-wrapp {
        position: relative;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* FiboSearch: ära lase pirx "left" absolute-moodis ikooni valesse kohta nihutada */
    #main-header .header-search-mobile button.dgwt-wcas-search-submit,
    #main-header .header-search-mobile .dgwt-wcas-search-icon {
        position: static !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        animation: none !important;
    }
        #main-header .header-row-1,
        #main-header.scrolled .header-row-1 {
            display: flex !important;
        }
        #main-header .header-row-2.mobile-search-row,
        #main-header.scrolled .header-row-2.mobile-search-row {
            display: block !important;
        }
        #main-header .mobile-search-row .awero-search-wrap .dgwt-wcas-search-wrapp,
        #main-header .mobile-search-row .awero-search-wrap .dgwt-wcas-sf-wrapp,
        #main-header .mobile-search-row .awero-search-wrap .dgwt-wcas-search-filled .dgwt-wcas-sf-wrapp,
        #main-header .mobile-search-row .awero-search-wrap input.dgwt-wcas-search-input,
        #main-header .mobile-search-row .awero-search-wrap input.dgwt-wcas-search-input:focus,
        #main-header .mobile-search-row .awero-search-wrap input.dgwt-wcas-search-input:hover {
            border: none !important;
            box-shadow: none !important;
            outline: none !important;
            border-radius: 2px !important;
        }
        #main-header .mobile-search-row .awero-search-wrap input.dgwt-wcas-search-input,
        #main-header .mobile-search-row .awero-search-wrap input.dgwt-wcas-search-input:focus {
            color: #022B65 !important;
            -webkit-text-fill-color: #022B65 !important;
            padding-left: 38px !important;
        }
        #main-header .mobile-search-row .awero-search-wrap input.dgwt-wcas-search-input::placeholder,
        #main-header .mobile-search-row .awero-search-wrap input.dgwt-wcas-search-input::-webkit-input-placeholder,
        #main-header .mobile-search-row .awero-search-wrap input.dgwt-wcas-search-input::-moz-placeholder,
        #main-header .mobile-search-row .awero-search-wrap input.dgwt-wcas-search-input:-ms-input-placeholder,
        #main-header .mobile-search-row .awero-search-wrap input.dgwt-wcas-search-input::-ms-input-placeholder {
            color: #022B65 !important;
            opacity: 1 !important;
        }
        #main-header .mobile-search-row .awero-search-wrap .dgwt-wcas-search-submit .dgwt-wcas-ico-magnifier,
        #main-header .mobile-search-row .awero-search-wrap .dgwt-wcas-search-submit svg,
        #main-header .mobile-search-row .awero-search-wrap .dgwt-wcas-search-submit svg path {
            fill: #fff !important;
            color: #fff !important;
        }
        #main-header .mobile-search-row .awero-search-wrap .dgwt-wcas-search-submit {
            left: 10px !important;
            right: auto !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            height: 24px !important;
            width: 24px !important;
            line-height: 1 !important;
        }
    }
	.trp-flag-image{
  height: 20px !important;
  width: 20px !important;
}

.product-attribute-list {
    padding-left: 0; /* Eemaldab vasakpoolse sisemise marginaali */
    margin-bottom: 0; /* Eemaldab lõppemismarginaali */
    list-style-type: disc; /* Kui soovite loendipunkte */
    text-align: right; /* Joondab loendipunktid paremale */
}

.product-attribute-list li {
    margin-bottom: 5px; /* Lisab vahe iga värvi vahele */
}

.product_title {
    display: flex;
 
    height: 68px;
    line-height: 1.4;
    text-align: left;
    overflow: hidden;
}

.product_title a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%; /* Täidab vanemelemendi */
    text-transform: capitalize;
}

.price p {
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.product .price {
    text-align: right !important;
    color: #000;
    font-family: 'Hanken Grotesk';
    font-weight: 400;
    font-size: 16px;
}

.omadused {
    width: 100%;
}

.title-and-button {
    display: flex;
    align-items: flex-start;
}

.title-and-button .col-7 {
    padding: 0px;
}

.title-and-button .col-5 {
    padding: 0px;
}

/* Kategooria 18: Lisainfo nupp on alla joone (nagu Osta), pealkirja kõrval tühi – peida col-5 */
.product[data-in-category-18="1"] .title-and-button .col-5 {
    display: none;
}

/* Kategooria 18: tootenimi 100% laiuselt */
.product[data-in-category-18="1"] .title-and-button .col-7 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
}

.product[data-in-category-18="1"] .title-and-button .col-7 .product_title {
    width: 100%;
}

/* color-box-wrapper: nupp (product-card-actions-inline) alati põhjas */
.product-attributes .color-box-wrapper {
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.product-attributes .color-box-wrapper .product-card-actions-inline {
    margin-top: auto;
}

/* product-actions-column: Osta nupp alati põhjas (teised kategooriad) */
.product-attributes .product-actions-column {
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.product-attributes .product-actions-column .additional-info-button {
    margin-top: auto;
}

.product-card-actions-inline {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 8px;
}

.product-card-actions-inline .additional-info-button.category-18 {
    position: relative;
    top: -10px;
}

.additional-info-button {
    background-color: #08244C;
    color: white;
    border: none;
    padding: 5px 20px;
    cursor: pointer;
    font-size: 16px;
    float: right;
    height: 37px;
    transform: skewX(-22deg);
    position: relative;
    right: 10px;
    top: 29px; /* Vaikimisi väärtus, kui ei ole kategoorias 18, 316, 213 või 318 */
    white-space: nowrap;
}
@media only screen and (max-width: 600px) {
  .additional-info-button.category-214  {
    top: 19px !important;
  }
}
.additional-info-button.category-18 {
    top: -6px; /* Kategoorias 18 */
}

.additional-info-button.category-316 {
    top: 0px; /* Kategoorias 316, 213 ja 318 */
}

.additional-info-button span {
    transform: skewX(22deg);
    display: inline-block;
    white-space: nowrap;
}

.additional-info-button:hover {
    background-color: #064080;
}

.product-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.product-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 700px;
}

.product-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.product-modal-close:hover,
.product-modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.product-modal-content {
    padding: 20px; /* Veenduge, et modaalakna sisu oleks piisavalt polsterdatud */
    box-sizing: border-box; /* Tagab, et polsterdus ei mõjuta modaalakna üldlaiust */
}

.modal-body {
    display: flex;
    align-items: center;
    margin-bottom: 33px;
}

.modal-body .col-md-12 {
    margin-bottom: 40px;
}

.modal-images {
    flex: 1;
    margin-right: 20px;
}

.modal-text h2 {
    margin-bottom: 10px;
}

.modal-text p {
    font-size: 14px;
    margin-top: 3px !important;
}

.modal-text {
    max-width: 100%;
    overflow-wrap: break-word; /* Lubab tekstil murduda reavahetuse kohalt, kui see on liiga lai */
}

@media only screen and (max-width: 600px) {
    .additional-info-button {
        top: 7px !important;
    }
    .modal-contact label {
        width: 100%;
    }
    .product-modal-content {
        background-color: #fff;
        margin: 15% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 98%;
    }
    .modal-text {
        height: 120px !important;
        margin-bottom: 39px;
    }
    .product_title {
        font-size: 14px !important;
    }
    .gift-ribbon {
       width: 126px !important;
        left: 65%;
    }
}

.variation-colors {
    width: 100%;
    display: flex;
    padding-top: 7px;
}

.color-box {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    margin-right: 10px;
    cursor: pointer;
}

.color-box.blue {
    background-color: #003384;
    border: 1px solid #003384;
}

.color-box.grey {
    background-color: #D9D9D9;
    border: 1px solid #D9D9D9;
}

.color-box.white {
    background-color: #fff;
    border: 1px solid #D9D9D9;
}

.color-box.black {
    background-color: #464A4B;
    border: 1px solid #464A4B;
}

.color-box.lightblue {
    background-color: #6093ac;
    border: 1px solid #6093ac;
}

.color-box:not(.blue):not(.grey):not(.white):not(.black):not(.lightblue) {
    background-color: black;
    border: 2px solid black;
    opacity: 0.7;
}

.color-box:hover {
    opacity: 1;
}

.product-image {
    position: relative; /* Ensure the ribbon is positioned relative to this container */
    width: 100% !important;
    height: auto;
    cursor: pointer;
    margin-bottom: 10px;
}

.variation-colors {
    display: flex;
    padding-left: 0px;
    padding-top: 7px;
    justify-content: right;
}

.color-box-wrapper {
    position: relative;
    left: 0;
    bottom: 3px;
}

.product-attributes .col-8 {
    padding-left: 0px;
    padding-right: 10px;
}

.product-attributes .col-4 {
    padding: 0px;
}

.color-box {
    border-radius: 50%;
    margin: 2px;
    display: inline-block;
    position: relative;
}

.color-box:hover .color-name {
    display: block;
}

.color-name {
    display: none;
    position: absolute;
    top: 20px; /* Muutke vastavalt vajadusele */
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px;
    border-radius: 3px;
    white-space: nowrap;
    z-index: 100;
}

.product_title.entry-title {
    cursor: pointer; /* Muudame kursori kuju käeks */
}

.gift-ribbon {
       background-color: #022B65;
    color: #fff;
    padding: 12px 10px;
    font-size: 14px;
    font-weight: bold;
    transform-origin: 0 0;
    z-index: 10;
    width: 150px;
    text-align: center;
    transform: skewX(-22deg);
    position: relative;
    top: 20px;
}

.stock-ribbon span, .gift-ribbon span {
    transform: skewX(22deg);
    display: inline-block;
}

@media (max-width: 600px) {
    .additional-info-button {
        padding: 5px 21px !important;
       
    }
    .product-attributes span {
        font-size: 14px;
        line-height: 21px;
    }
    .product-attributes strong {
        font-size: 14px;
    }
	.additional-info-button.category-18 {
    top: 0px !important; /* Kategoorias 18 */
}
}
@media (max-width: 600px) {
    .additional-info-button.category-214 {
        top: 106px !important;
    }
	.counter-wrapper{
		margin-top: -14px !important;
	}
}

.thwvsf_fields{
	margin-left: 20px !important;
}

.wc-block-checkout__shipping-option .wc-block-components-radio-control__option {
  margin: 0;
  padding: .875em .875em .875em 3.5em;
  width: 100% !important;
  height: max-content !important;
}
.wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__option {
  border-width: 0;
  width: 100% !important;
  height: max-content !important;
}
.wp-block-woocommerce-checkout {
  margin: 0;
  padding-top: 100px !important;
}

/* Täislaiuses Osta / More info nupp product cardi all */
.product-card-actions-inline .additional-info-button {
  background-color: #08244C;
  color: #ffffff;
  border: none;
  padding: 5px 20px;
  cursor: pointer;
  font-size: 16px;
  height: 37px;
  transform: skewX(-22deg);
  white-space: nowrap;
  width: 100%;
  text-align: center;
  float: none;
  position: static;
  right: auto;
  top: auto;
}

.accessory-icon{
	width:13%;
}
.accessory-title {

  width: 60%;
}
.combo-accessory-item, .accessory-label,.accessory-title {

  width: 100%;
}

@media only screen and (max-width: 600px) {
  .footer {
    height: auto !important;
  }
}

/* Mobile menu: TranslatePress language switcher text should be blue (not white) */
@media (max-width: 991.98px) {
  #mobileMenuContent .trp-language-switcher-container,
  #mobileMenuContent .trp-language-switcher-container a,
  #mobileMenuContent .trp-language-switcher-container a span,
  #mobileMenuContent .trp-language-switcher-container .trp-ls-shortcode-current-language,
  #mobileMenuContent .trp-language-switcher-container .trp-ls-shortcode-current-language a,
  #mobileMenuContent .trp-language-switcher-container .trp-ls-shortcode-current-language a span,
  #mobileMenuContent .trp-language-switcher-container .trp-ls-language-name {
    color: #022B65 !important;
  }
}

/* Mobile menu: WPML language switcher text (EST/ENG/...) should be blue */
@media (max-width: 991.98px) {
  #mobileMenuContent .wpml-ls-menu-item,
  #mobileMenuContent .wpml-ls-menu-item a,
  #mobileMenuContent .wpml-ls-menu-item a > span,
  #mobileMenuContent .wpml-ls-menu-item .wpml-ls-native {
    color: #022B65 !important; /* overrides inline "color: #FFFDF5" */
  }
}

/* Mobile menu: WPML dropdown arrow should be blue (disable homepage invert filter) */
@media (max-width: 991.98px) {
  #mobileMenuContent .menu-item-has-children.wpml-ls-item > a::after,
  #mobileMenuContent .wpml-ls-item.menu-item-has-children > a::after {
    filter: none !important;
  }
  #mobileMenuContent .menu-item-has-children:not(.wpml-ls-item) > a::after {
    filter: none !important;
    background-image: url('https://awero.ee/wp-content/themes/awero/images/arrow-down.svg') !important;
  }
  #mobileMenuContent .menu-item-has-children:not(.wpml-ls-item):hover > a::after,
  #mobileMenuContent .menu-item-has-children:not(.wpml-ls-item):focus-within > a::after {
    background-image: url('https://awero.ee/wp-content/themes/awero/images/arrow-up.svg') !important;
  }
}

/* -------------------------------------------------------------------------- */
/* Bootstrap 5 utility class compatibility (theme uses Bootstrap 4.x)          */
/* -------------------------------------------------------------------------- */

/* Typography helpers used across templates */
.fw-bold { font-weight: 700 !important; }
.lh-1 { line-height: 1 !important; }
.display-5 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
}

/* FiboSearch placeholder: esilehel valge, teistel lehtedel sinine */
#main-header.header-home .dgwt-wcas-search-input::placeholder,
#main-header.header-home .dgwt-wcas-search-input::-webkit-input-placeholder,
#main-header.header-home .dgwt-wcas-search-input::-moz-placeholder,
#main-header.header-home .dgwt-wcas-search-input:-ms-input-placeholder,
#main-header.header-home .dgwt-wcas-search-input::-ms-input-placeholder,
#main-header.header-home .awero-search-wrap input.dgwt-wcas-search-input::placeholder,
#main-header.header-home .awero-search-wrap input.dgwt-wcas-search-input::-webkit-input-placeholder,
#main-header.header-home .awero-search-wrap input.dgwt-wcas-search-input::-moz-placeholder,
#main-header.header-home .awero-search-wrap input.dgwt-wcas-search-input:-ms-input-placeholder,
#main-header.header-home .awero-search-wrap input.dgwt-wcas-search-input::-ms-input-placeholder {
  color: #ffffff !important;
  opacity: 1 !important;
}
#main-header.header-other .dgwt-wcas-search-input::placeholder,
#main-header.header-other .dgwt-wcas-search-input::-webkit-input-placeholder,
#main-header.header-other .dgwt-wcas-search-input::-moz-placeholder,
#main-header.header-other .dgwt-wcas-search-input:-ms-input-placeholder,
#main-header.header-other .dgwt-wcas-search-input::-ms-input-placeholder {
  color: #022B65 !important;
  opacity: 1 !important;
}

@media (max-width: 991px) {
  #main-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    min-height: 76px !important;
  }
  #main-header.scrolled {
    min-height: 76px !important;
  }
  body.admin-bar #main-header {
    top: 32px !important;
  }
  @media screen and (max-width: 782px) {
    body.admin-bar #main-header {
      top: 46px !important;
    }
  }
  body.admin-bar #main-header.scrolled {
    top: 0 !important;
  }
  #main-header .pt-lg-1 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  #main-header .dgwt-wcas-search-input,
  #main-header .dgwt-wcas-search-input:focus {
    color: #022B65 !important;
    -webkit-text-fill-color: #022B65 !important;
  }
  #main-header .dgwt-wcas-search-input::placeholder,
  #main-header .dgwt-wcas-search-input::-webkit-input-placeholder,
  #main-header .dgwt-wcas-search-input::-moz-placeholder,
  #main-header .dgwt-wcas-search-input:-ms-input-placeholder,
  #main-header .dgwt-wcas-search-input::-ms-input-placeholder {
    color: #022B65 !important;
    opacity: 1 !important;
  }
  #main-header .header-row-1 .d-flex.align-items-center.ml-auto {
    gap: 14px;
  }
  #main-header .header-row-1 .d-flex.align-items-center.ml-auto .header-search-mobile,
  #main-header .header-row-1 .d-flex.align-items-center.ml-auto .cart-button {
    margin: 0 !important;
  }
  #main-header .header-row-1 .d-flex.align-items-center.ml-auto .navbar-toggler {
    margin: 0 !important;
    padding: 0 !important;
  }
  #main-header .header-search-mobile .dgwt-wcas-search-icon svg,
  #main-header .header-search-mobile .dgwt-wcas-search-icon .dgwt-wcas-ico-magnifier-handler,
  #main-header .header-search-mobile .dgwt-wcas-search-submit svg,
  #main-header .header-search-mobile .dgwt-wcas-search-submit .dgwt-wcas-ico-magnifier {
    width: 22px !important;
    height: 22px !important;
  }
  #main-header.header-home .header-search-mobile .dgwt-wcas-search-submit .dgwt-wcas-ico-magnifier,
  #main-header.header-home .header-search-mobile .dgwt-wcas-search-submit svg,
  #main-header.header-home .header-search-mobile .dgwt-wcas-search-submit svg path,
  #main-header.header-home .header-search-mobile .dgwt-wcas-search-icon svg,
  #main-header.header-home .header-search-mobile .dgwt-wcas-search-icon svg path {
    fill: #ffffff !important;
    color: #ffffff !important;
  }
}

/* Footer layout */
.awero-footer {
  background-color: #08244C;
  color: #ffffff;
  display: flex;
  padding: var(--spacing-24, 96px) 0;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-8, 32px);
}
.awero-footer-container {
  max-width: 1300px !important;
  width: 100%;
  box-sizing: border-box;
  padding-left: 24px;
  padding-right: 24px;
}
.awero-footer a {
  color: #ffffff;
  text-decoration: none;
}
.awero-footer-top {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1.25fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.awero-footer-logo {
  width: 150px;
  height: auto;
}
.awero-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
.awero-footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none !important;
}
.awero-footer-contact a span {
  display: inline-block;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.awero-footer-contact a:hover span {
  text-decoration-color: #FFF;
}
.awero-footer-contact a:hover {
  color: #FFF;
}
.awero-footer-contact a:hover img {
  filter: brightness(0) invert(1);
}
.awero-footer-contact a img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.awero-footer-social-wrap {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.awero-footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 0;
}
.awero-footer-social svg {
  width: 24px;
  height: 24px;
}
.awero-footer-social-wrap .awero-footer-heading {
  margin: 0;
}
.awero-footer-heading {
  margin: 0 0 16px;
  color: #FFF;
  font-family: "Hanken Grotesk";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  color: #ffffff;
}
.awero-footer-menu,
.awero-footer-bottom-menu,
.awero-footer-legal {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}
.awero-footer-menu li,
.awero-footer-bottom-menu li {
  margin-bottom: 12px;
  display: block;
}
.awero-footer-menu li:last-child,
.awero-footer-bottom-menu li:last-child {
  margin-bottom: 0;
}
.awero-footer-menu-showrooms li {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.awero-footer-menu-showrooms li img {
  width: 12px;
  height: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}
.awero-showroom-text {
  display: flex;
  flex-direction: column;
}
.awero-showroom-title {
  color: #FFF;
  font-family: "Hanken Grotesk";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
.awero-showroom-address {
  color: #FFF;
  font-family: "Hanken Grotesk";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.awero-footer-bottom {
  position: relative;
  padding-top: 48px;
}
.awero-footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.awero-footer-bottom-row + .awero-footer-bottom-row {
  margin-top: 10px;
}
.awero-footer-copyright {
  margin: 0;
  font-size: 16px;
}

/* Keep bottom legal links from forcing the "Created by" text to wrap */
@media (min-width: 992px) {
  .awero-footer-bottom-row-bottom {
    align-items: flex-start;
  }

  .awero-footer-bottom-row-bottom > .awero-footer-bottom-left {
    flex: 0 0 70%;
    max-width: 70%;
  }

  .awero-footer-bottom-row-bottom > .awero-footer-bottom-right {
    flex: 0 0 30%;
    max-width: 30%;
  }

  .awero-footer-created-by,
  .awero-footer-created-by span {
    white-space: nowrap;
  }
}

/* Explicit typography for the top-row copyright text */
.awero-footer-copyright {
  color: #FFF;
  font-family: "Hanken Grotesk";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.awero-footer-legal {
  display: flex;
  flex-wrap: wrap;
  row-gap: 12px;
  column-gap: 18px;
}
.awero-footer-legal .menu-item a {
  padding: 0 !important;
}
.awero-footer-legal li a {
  padding: 0 !important;
}
.awero-footer-menu .menu-item a,
.awero-footer-menu li a,
.awero-footer-legal .menu-item a,
.awero-footer-legal li a,
.awero-footer-contact a,
.awero-footer-created-by span,
.awero-footer-copyright {
  color: #FFF;
  font-family: "Hanken Grotesk";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.awero-footer-menu .menu-item a,
.awero-footer-menu li a {
  padding: 0 !important;
}
.awero-footer-bottom .awero-footer-legal .menu-item a,
.awero-footer-bottom .awero-footer-legal li a,
.awero-footer-bottom .awero-footer-created-by span {
  font-size: 14px;
}
.awero-footer-bottom .awero-footer-copyright {
  color: #FFF;
  font-family: "Hanken Grotesk";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.awero-footer-bottom-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}
.awero-footer-created-by,
.awero-footer-bigeye-logo-link {
  display: inline-flex;
  align-items: center;
  text-align: right;
}
.awero-footer-bigeye-logo-link img {
  height: 16px;
  width: auto;
}
.awero-footer-watermark {
  position: absolute;
  left: 50%;
  top: 24px;
  transform: translateX(-50%);
  width: 165px;
  height: 136.433px;
  opacity: 1;
  pointer-events: none;
}

@media (max-width: 991px) {
  .awero-footer-container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .awero-footer {
    padding: 40px 0 24px;
  }
  .awero-footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 28px;
  }
  .awero-footer-bottom {
    position: relative;
    padding-top: 40px;
  }
  .awero-footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .awero-footer-watermark {
    position: absolute;
    right: 8px;
    top: 8px;
    left: auto;
    transform: none;
    width: 100px;
    margin: 0;
    opacity: 1;
  }
}

@media (min-width: 992px) {
  /* Kui bottom footerisse lisada rohkem linke, siis vasak veerg võib kasvada,
     aga "Loodud BigEye poolt" peab jääma ühe reana ja parempoolne veerg ei tohi kokku vajuda. */
  .awero-footer-bottom-row-bottom {
    align-items: flex-start;
    gap: 0;
  }
  .awero-footer-bottom-row-bottom .awero-footer-bottom-left {
    flex: 0 0 70%;
    max-width: 70%;
    min-width: 0;
  }
  .awero-footer-bottom-row-bottom .awero-footer-bottom-right-bottom {
    flex: 0 0 30%;
    max-width: 30%;
    flex-shrink: 0;
    justify-content: flex-end;
    text-align: right;
  }
  .awero-footer-bottom-row-bottom .awero-footer-created-by span {
    white-space: nowrap;
  }
}

