<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

:root{
  --copper:#b87333;
  --paper:#ffffff;
  --coal:#000000;
}

/* =========================
   THE COPPER GRIND — GLOBAL HEADER (SITE-WIDE)
   Put in MAIN CSS only
========================= */

.cg-header{
  position: sticky !important;
  top: 0 !important;
  z-index: 99999 !important;
  background: #000 !important;
}

/* Wrapper */
.cg-header-wrap{
  padding: 14px 20px;
}

/* Row layout */
.cg-header-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

/* Brand block */
.cg-brand{
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0; /* prevents weird squeezing */
}

/* Logo (desktop) */
.cg-logo{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
}

.cg-logo img{
  width: 92%;
  height: 92%;
  object-fit: contain;
  display: block;
}

/* Brand name (desktop) */
.cg-brand-name{
  font-size: 2.2rem;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}

/* Nav */
.cg-nav{
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}

/* Links (Menu/Gallery/Shop) */
.cg-nav a{
  text-decoration: none !important;
  white-space: nowrap !important;
}

/* Non-button links */
.cg-nav a:not(.cg-btn){
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--copper, #b87333);
}

.cg-nav a:not(.cg-btn):hover{
  opacity: .85;
}

/* Button links */
.cg-nav a.cg-btn{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: auto !important;
  max-width: none !important;
  flex: 0 0 auto !important;

  padding: 10px 14px !important;
  border-radius: 16px !important;
  background: var(--copper, #b87333) !important;
  color: #fff !important;

  font-weight: 800 !important;
  font-size: 1rem !important;
  line-height: 1.1 !important;
}

/* =========================
   MOBILE HEADER (fixes your screenshot problems)
========================= */
@media (max-width: 640px){

  .cg-header-wrap{
    padding: 10px 12px !important;
  }

  .cg-header-row{
    gap: 10px !important;
  }

  /* Make header content fit + stop it looking “massive” */
  .cg-logo{
    width: 84px !important;
    height: 84px !important;
  }

  .cg-brand{
    gap: 12px !important;
  }

  .cg-brand-name{
    font-size: 1.35rem !important;
    line-height: 1.05 !important;
  }

  /* Make nav wrap nicely and keep spacing */
  .cg-nav{
    gap: 10px !important;
  }

  .cg-nav a:not(.cg-btn){
    font-size: .98rem !important;
  }

  /* Critical: prevent Zoho/theme from forcing full-width */
  .cg-nav a,
  .cg-nav a.cg-btn{
    display: inline-flex !important;
    width: auto !important;
    max-width: none !important;
    flex: 0 0 auto !important;
  }

  .cg-nav a.cg-btn{
    padding: 8px 11px !important;
    font-size: .95rem !important;
    border-radius: 14px !important;
  }
}


/* =========================
   GENERIC CENTERED SECTION FIX
   (Shop / Book / Coming Soon pages)
========================= */

.cg-section{
  width: 100%;
  display: flex;
  justify-content: center;
}

.cg-section .cg-panel{
  width: 100%;
  max-width: 760px;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}

</style>
