:root{
  --hzr-black:#050505;
  --hzr-gold:#C8A96A;
  --hzr-cream:#F7F2EC;
  --hzr-line:rgba(200,169,106,.14);
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--hzr-black);
  color:var(--hzr-cream);
  font-family:Georgia,"Times New Roman",serif;
  -webkit-font-smoothing:antialiased;
}

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

img{
  max-width:100%;
  height:auto;
  display:block;
}

.hzr-site{
  min-height:100vh;
  background:#050505;
  display:flex;
  flex-direction:column;
}

.hzr-header{
  background:#050505;
  border-bottom:1px solid var(--hzr-line);
}

.hzr-header__inner{
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px 20px;
}

.hzr-logo-text{
  color:var(--hzr-gold);
  font-size:64px;
  line-height:1;
  letter-spacing:.04em;
  font-weight:400;
}

.custom-logo{
  max-height:72px;
  width:auto;
}

.hzr-main{
  flex:1;
  background:#050505;
}

.hzr-empty{
  min-height:calc(100vh - 168px);
  background:#050505;
}

.hzr-content{
  min-height:calc(100vh - 168px);
  background:#050505;
  padding:40px 20px;
}

.hzr-content__inner{
  width:min(1120px,100%);
  margin:0 auto;
}

.hzr-content,
.hzr-content a{
  color:var(--hzr-gold);
}

.hzr-footer{
  background:#050505;
  border-top:1px solid var(--hzr-line);
}

.hzr-footer__inner{
  min-height:80px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px 20px;
  text-align:center;
  color:var(--hzr-gold);
  font-size:14px;
  letter-spacing:.04em;
}

/* WooCommerce basic blank compatibility */
.woocommerce ul.products{
  display:grid!important;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
}

.woocommerce ul.products li.product{
  float:none!important;
  width:auto!important;
  margin:0!important;
  background:#080808;
  border:1px solid var(--hzr-line);
  padding:0 0 16px!important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price{
  color:var(--hzr-gold)!important;
  padding-left:14px!important;
  padding-right:14px!important;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.single_add_to_cart_button{
  background:var(--hzr-gold)!important;
  color:#000!important;
  border-radius:0!important;
  border:0!important;
}

.search-form{
  display:flex;
  gap:10px;
}

.search-field{
  flex:1;
  min-height:44px;
  background:#090909;
  color:var(--hzr-cream);
  border:1px solid var(--hzr-line);
  padding:0 12px;
}

.search-submit{
  min-height:44px;
  background:var(--hzr-gold);
  color:#000;
  border:0;
  padding:0 18px;
}

@media (max-width:900px){
  .hzr-header__inner{
    min-height:76px;
  }

  .hzr-logo-text{
    font-size:50px;
  }

  .hzr-empty,
  .hzr-content{
    min-height:calc(100vh - 148px);
  }

  .woocommerce ul.products{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
  }
}

@media (max-width:520px){
  .hzr-header__inner{
    min-height:70px;
  }

  .hzr-logo-text{
    font-size:42px;
  }

  .hzr-footer__inner{
    min-height:72px;
    font-size:13px;
  }

  .hzr-empty,
  .hzr-content{
    min-height:calc(100vh - 142px);
  }
}
