@font-face {
    font-family: 'ITC Cheltenham Std';
    src: url('../font/CheltenhamStd-Bold.eot');
    src: url('../font/CheltenhamStd-Bold.eot?#iefix') format('embedded-opentype'),
        url('../font/CheltenhamStd-Bold.woff2') format('woff2'),
        url('../font/CheltenhamStd-Bold.woff') format('woff'),
        url('../font/CheltenhamStd-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITC Cheltenham Std';
    src: url('../font/CheltenhamStd-Book.eot');
    src: url('../font/CheltenhamStd-Book.eot?#iefix') format('embedded-opentype'),
        url('../font/CheltenhamStd-Book.woff2') format('woff2'),
        url('../font/CheltenhamStd-Book.woff') format('woff'),
        url('../font/CheltenhamStd-Book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITC Cheltenham Std';
    src: url('../font/CheltenhamStd-BookItalic.eot');
    src: url('../font/CheltenhamStd-BookItalic.eot?#iefix') format('embedded-opentype'),
        url('../font/CheltenhamStd-BookItalic.woff2') format('woff2'),
        url('../font/CheltenhamStd-BookItalic.woff') format('woff'),
        url('../font/CheltenhamStd-BookItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}



:root{
	--primary-color:#FBA400;
	--verde-color:#00432C;
	--verde-claro:#015940;
	--burdeos-color:#631927;
	--claro-color:#F9B233;
	--black:#000;
	--white:#fff;
	--font-cheltenham:'ITC Cheltenham Std';
}


body{
  color: var(--black);
	line-height: 25px;
	font-weight: 400;
	font-style: normal;
	font-size: 20px;
	background-color: var(--primary-color);
	font-family: var(--font-cheltenham);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  background: var(--black);
  padding: 30px 15px;
  height: 105px;
}

.header .mastbar{
  max-width: 1720px;
  width: 100%;
  margin: 0 auto;
}

.mastbar__inner{
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  max-width: none;
  height: 45px;
}

.mastbar__inner .header-links{
  display: flex;
  align-items: center;
  gap: 30px;
}

.mastbar__inner .header-links a:hover{
  text-decoration: underline;
}

.header-widget {
  color: var(--white);
}

.widget{
  margin-bottom: 0;
}

.header-widget a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.header-image{
  position: absolute;
	z-index: 3;
}

.header-image img {
  width: clamp(198px, 30vw, 556px);
}


.wp-block-woocommerce-mini-cart{
  color: var(--white);
}

.wp-block-woocommerce-mini-cart .wc-block-mini-cart__button,
.header-cart-link a span{
  height: 45px;
  width: 45px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/cart-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  color: inherit;
  padding: 0;
  position: relative;
}

.header-cart-link a span {
  display: inline-flex;
}

.woocommerce-cart   .header .header-cart-link{
  display: none;
}




@media (max-width:820px){
  .header {
    padding: 10px 15px;
    height: 66px;
  }
  .mastbar__inner{
    gap: 15px;
  }

  .header a.link{
    display: none;
  }


}

.woocommerce-cart .wp-block-woocommerce-mini-cart .wc-block-mini-cart__button{
  display: none;
}
