/* ===== Kadence Header: full width background, 1100px inner, balanced gutters ===== */

/* 1) Constrain the INNER header content to 1100px and center it */
.site-header .site-header-row-container-inner {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 40px;   /* same left/right gutter */
  padding-right: 40px;
}

/* 2) Set header row height and align items */
.site-header .site-header-row {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo left, nav/cart right */
}

/* 3) Menu typography */
#primary-menu .menu > li > a,
.header-navigation .menu > li > a {
  font-family: 'Antonio', sans-serif !important;
  font-size: 20px !important;
  color: #000000 !important;
  text-transform: uppercase;
  letter-spacing: 4px;
}

/* 4) Space between menu items */
#primary-menu .menu {
  gap: 10px;
}

/* 5) Cart icon spacing */
.site-header .header-cart,
.site-header .header-cart-wrap {
  margin-left: 10px;  /* space between menu and cart */
  margin-right: 0;
}

/* 6) Remove extra spacing that shifts layout */
.site-header .site-branding {
  padding-right: 0;
}
.header-navigation {
  margin-left: 0;
  margin-right: 0;
}


/* ===== Melogold Footer Look ===== */

/* Footer background + spacing */
.site-footer,
#colophon {
  background: #000000; /* deep green-black */
  padding: 60px 0;
}

/* Constrain inner width and push content to the right */
.site-footer .site-footer-inner,
#colophon .site-footer-inner,
.site-footer .footer-inner,
#colophon .footer-inner,
.site-footer .container,
#colophon .container {
  max-width: 1100px;
  margin: 0 auto;
	padding: 0 80px 0 24px;
  display: flex;
  justify-content: flex-end;
}

/* Stack everything on the right */
.site-footer .footer-right-stack,
#colophon .footer-right-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* Menu list becomes a right-aligned vertical stack */
.site-footer .menu,
#colophon .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* Menu link styling (Antonio, caps, tracking) */
.site-footer .menu a,
#colophon .menu a {
  font-family: "Antonio", sans-serif !important;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 14px;
  line-height: 1.1;
  text-decoration: none;
  color: #ADAD3F;
}

/* Hover */
.site-footer .menu a:hover,
#colophon .menu a:hover {
  color: #b7a243; /* gold */
}

/* Make specific links gold by adding a class to those menu items */
.site-footer .menu .is-gold > a,
#colophon .menu .is-gold > a {
  color: #b7a243;
}

/* Email + credit text (small, light) */
.site-footer .footer-meta,
#colophon .footer-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  text-align: right;
  line-height: 1.5;
}

/* Email line: slightly stronger */
.site-footer .footer-meta a,
#colophon .footer-meta a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}

.site-footer .footer-meta a:hover,
#colophon .footer-meta a:hover {
  color: #b7a243;
}
/* WooCommerce pages: UI headings style */
.woocommerce-cart h2,
.woocommerce-checkout h2,
.woocommerce-account h2,
.woocommerce-cart h3,
.woocommerce-checkout h3,
.woocommerce-account h3 {
  font-family: "Antonio", sans-serif;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Hide cross-sells / recommended products */
.woocommerce-cart .cross-sells,
.woocommerce-cart .related {
  display: none !important;
}

/* WooCommerce My Account Buttons */
.woocommerce-account .button,
.woocommerce-account button,
.woocommerce-account .woocommerce-button {
    background-color: #ADAD3F !important;
    color: #ffffff !important;
    border-color: #A62845 !important;
}

/* Hover state */
.woocommerce-account .button:hover,
.woocommerce-account button:hover,
.woocommerce-account .woocommerce-button:hover {
    background-color: #000000 !important;
    color: #ADAD3F !important;
}