@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;700;900&family=Nunito+Sans:wght@400;600;700;800&display=swap");

:root {
  --hh-cream: #f9f1df;
  --hh-cream-soft: #fffaf0;
  --hh-honey: #f6b744;
  --hh-honey-deep: #e79a20;
  --hh-caramel: #8f4f15;
  --hh-earth: #5f360f;
  --hh-ink: #3c2209;
  --hh-border: rgba(95, 54, 15, 0.2);
  --hh-shadow: 0 14px 36px rgba(93, 58, 17, 0.16);
  --hh-radius-lg: 28px;
  --hh-radius-md: 16px;
}

body {
  background: linear-gradient(180deg, #fffdf8 0%, var(--hh-cream-soft) 100%);
  color: var(--hh-ink);
  font-family: "Nunito Sans", sans-serif;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  color: var(--hh-earth);
  font-family: "Fraunces", serif;
  font-weight: 700;
}

body p,
body li,
body a,
body span {
  font-family: "Nunito Sans", sans-serif;
}

.hh-home {
  overflow: hidden;
}

.hh-kicker {
  color: var(--hh-caramel);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hh-hero {
  padding: 44px 0 34px;
  position: relative;
}

.hh-hero::before {
  background: radial-gradient(circle at 20% 20%, rgba(246, 183, 68, 0.25), transparent 45%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hh-hero-inner {
  align-items: center;
  background: linear-gradient(120deg, rgba(255, 250, 240, 0.96), rgba(249, 241, 223, 0.96));
  border: 1px solid var(--hh-border);
  border-radius: var(--hh-radius-lg);
  box-shadow: var(--hh-shadow);
  display: grid;
  gap: 32px;
  grid-template-columns: 1.15fr 1fr;
  padding: 34px;
  position: relative;
  z-index: 2;
}

.hh-hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: 0.01em;
  line-height: 1.06;
  margin-bottom: 16px;
}

.hh-subcopy {
  color: #5d4427;
  font-size: 1.08rem;
  line-height: 1.66;
  margin-bottom: 22px;
}

.hh-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hh-button {
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 12px 20px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.22s ease;
}

.hh-button-primary {
  background: linear-gradient(135deg, var(--hh-honey), var(--hh-honey-deep));
  border: 1px solid var(--hh-honey-deep);
  color: var(--hh-earth);
}

.hh-button-primary:hover {
  box-shadow: 0 8px 20px rgba(231, 154, 32, 0.32);
  color: var(--hh-earth);
  transform: translateY(-2px);
}

.hh-button-secondary {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--hh-border);
  color: var(--hh-earth);
}

.hh-button-secondary:hover {
  background: #fff;
  border-color: rgba(95, 54, 15, 0.3);
  color: var(--hh-earth);
}

.hh-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hh-trust-list li {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--hh-border);
  border-radius: 999px;
  color: #5b3a11;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 8px 14px;
}

.hh-hero-media {
  align-self: stretch;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.hh-hero-media img {
  border-radius: 22px;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hh-floating-note {
  backdrop-filter: blur(6px);
  background: rgba(255, 249, 235, 0.88);
  border: 1px solid var(--hh-border);
  border-radius: 14px;
  bottom: 18px;
  box-shadow: 0 8px 22px rgba(52, 31, 10, 0.18);
  color: var(--hh-earth);
  max-width: 290px;
  padding: 12px 14px;
  position: absolute;
  right: 18px;
}

.hh-floating-note strong {
  display: block;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.hh-floating-note span {
  display: block;
  font-size: 0.84rem;
  line-height: 1.45;
}



.hh-value-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}







.hh-categories,
.hh-featured-products,
.hh-story {
  padding: 30px 0 44px;
}







.hh-category-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hh-category-card {
  border-radius: 18px;
  color: var(--hh-earth);
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.hh-category-card::after {
  background: linear-gradient(180deg, transparent 28%, rgba(49, 29, 8, 0.76));
  content: "";
  inset: 0;
  position: absolute;
}

.hh-category-card img {
  display: block;
  height: 240px;
  object-fit: cover;
  transition: transform 0.28s ease;
  width: 100%;
}

.hh-category-card span {
  bottom: 14px;
  color: #fff;
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  font-weight: 700;
  left: 16px;
  letter-spacing: 0.01em;
  position: absolute;
  z-index: 2;
}

.hh-category-card:hover img {
  transform: scale(1.05);
}

.hh-product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}



.hh-product-image {
  background: #fffaf2;
  display: block;
}

.hh-product-image img {
  display: block;
  height: 260px;
  object-fit: contain;
  padding: 20px;
  width: 100%;
}

.hh-product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 18px 16px;
}

.hh-product-content h3 {
  font-size: 1.32rem;
  margin-bottom: 10px;
}

.hh-product-content h3 a {
  color: var(--hh-earth);
  text-decoration: none;
}

.hh-product-content p {
  color: #6b4b1f;
  font-size: 0.94rem;
  line-height: 1.55;
  margin-bottom: 14px;
}

.hh-product-meta {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}

.hh-price {
  color: var(--hh-caramel);
  font-size: 1rem;
  font-weight: 800;
}

.hh-product-link {
  color: var(--hh-earth);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.hh-story-grid {
  align-items: center;
  background: linear-gradient(145deg, #fff6e3, #fffef9);
  border: 1px solid var(--hh-border);
  border-radius: var(--hh-radius-lg);
  box-shadow: var(--hh-shadow);
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1.15fr;
  padding: 30px;
}

.hh-story-image img {
  border-radius: 18px;
  display: block;
  width: 100%;
}

.hh-story-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}

.hh-story-copy p {
  color: #5d4427;
  line-height: 1.65;
}

.hh-footer {
  padding: 20px 0 34px;
  position: relative;
}

.hh-footer-shell {
  background: linear-gradient(140deg, rgba(255, 246, 225, 0.94), rgba(255, 253, 247, 0.96));
  border: 1px solid var(--hh-border);
  border-radius: var(--hh-radius-lg);
  box-shadow: var(--hh-shadow);
  padding: 30px;
}

.hh-footer-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.35fr 0.85fr 1fr;
}

.hh-footer-brand h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  margin-bottom: 10px;
}

.hh-footer-brand p {
  color: #64441b;
  margin-bottom: 16px;
  max-width: 58ch;
}

.hh-footer-nav h3,
.hh-footer-pickup h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.hh-footer-nav ul,
.hh-footer-points {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hh-footer-nav a {
  color: var(--hh-earth);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.hh-footer-nav a:hover {
  color: var(--hh-caramel);
  text-decoration: underline;
}

.hh-footer-location {
  color: var(--hh-earth);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hh-footer-points li {
  color: #67461b;
  font-size: 0.92rem;
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}

.hh-footer-points li::before {
  background: linear-gradient(135deg, var(--hh-honey), var(--hh-honey-deep));
  border-radius: 999px;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 0.5em;
  width: 8px;
}

.hh-footer-widgets {
  border-top: 1px solid rgba(95, 54, 15, 0.16);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
  padding-top: 22px;
}

.hh-footer-widget-column {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(95, 54, 15, 0.12);
  border-radius: 14px;
  padding: 14px;
}

.hh-footer-widget-column .widget {
  margin: 0;
  padding: 0 !important;
}

.hh-footer-widget-column h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.hh-footer-widget-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hh-footer-widget-column li {
  margin-bottom: 6px;
}

.hh-footer-widget-column a {
  color: #66471d;
  text-decoration: none;
}

.hh-footer-widget-column a:hover {
  color: var(--hh-caramel);
}

.hh-footer-bottom-wrap {
  margin-top: 12px;
}

.hh-footer-bottom {
  align-items: center;
  background: rgba(255, 245, 224, 0.92);
  border: 1px solid rgba(95, 54, 15, 0.16);
  border-radius: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  padding: 14px 18px;
}

.hh-footer-legal {
  color: #5d3d14;
  font-size: 0.9rem;
  margin: 0;
}

.hh-footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}

.hh-footer-bottom-links a {
  color: var(--hh-earth);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.hh-footer-bottom-links a:hover {
  color: var(--hh-caramel);
}

.hh-footer-social {
  margin-left: auto;
}

.hh-footer-social .widget {
  margin: 0 !important;
  padding: 0 !important;
}

.hh-footer-social .custom-social-icons p {
  margin-bottom: 0;
}

.hh-footer .hh-scrollup i {
  background: linear-gradient(135deg, var(--hh-honey), var(--hh-honey-deep));
  border: 1px solid var(--hh-honey-deep);
  box-shadow: 0 8px 20px rgba(231, 154, 32, 0.35);
  color: var(--hh-earth) !important;
}

.hh-footer-bottom-wrap.copyright-fixed {
  backdrop-filter: blur(3px);
  background: rgba(255, 249, 238, 0.92);
}

.hh-shop-hero,
.hh-single-hero {
  background: linear-gradient(120deg, #fff2d4, #fff9ec);
  border-bottom: 1px solid var(--hh-border);
  margin-bottom: 26px;
  padding: 34px 0 28px;
}

.hh-shop-hero h2,
.hh-single-hero h2 {
  font-size: clamp(1.9rem, 3.3vw, 2.7rem);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hh-shop-hero p,
.hh-single-hero p {
  color: #68461d;
  margin-bottom: 14px;
  max-width: 760px;
}

.hh-highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hh-highlight-row span {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--hh-border);
  border-radius: 999px;
  color: var(--hh-earth);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 7px 12px;
  text-transform: uppercase;
}

body.woocommerce main#maincontent {
  padding-top: 0 !important;
}

body.woocommerce .shop-page .woocommerce-result-count,
body.woocommerce .shop-page .woocommerce-ordering {
  margin-bottom: 16px;
}

.hh-shop-row .woocommerce-products-header {
  display: none;
}

body.woocommerce .shop-page ul.products {
  display: grid !important;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 !important;
  padding: 0 !important;
}

body.woocommerce .shop-page ul.products::before,
body.woocommerce .shop-page ul.products::after {
  content: none !important;
}

body.woocommerce .shop-page ul.products li.product {
  background: #fff;
  border: 1px solid var(--hh-border);
  border-radius: 18px;
  box-shadow: 0 5px 16px rgba(90, 54, 15, 0.08);
  float: none !important;
  margin: 0 !important;
  padding: 14px !important;
  width: 100% !important;
}

body.woocommerce .shop-page ul.products li.product img {
  border-radius: 12px;
  margin-bottom: 12px !important;
  width: 100% !important;
}

body.woocommerce .shop-page ul.products li.product .woocommerce-loop-product__title {
  color: var(--hh-earth);
  font-family: "Fraunces", serif;
  font-size: 1.2rem !important;
  line-height: 1.25;
  margin-bottom: 10px !important;
}

body.woocommerce .shop-page ul.products li.product .price {
  color: var(--hh-caramel) !important;
  font-size: 0.98rem;
  font-weight: 800 !important;
  margin-bottom: 12px !important;
}

body.woocommerce .shop-page ul.products li.product .button,
body.woocommerce .shop-page ul.products li.product a.added_to_cart.wc-forward {
  background: linear-gradient(135deg, var(--hh-honey), var(--hh-honey-deep)) !important;
  border: 1px solid var(--hh-honey-deep) !important;
  border-radius: 999px !important;
  color: var(--hh-earth) !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em;
  margin-top: 0 !important;
  padding: 10px 14px !important;
  text-transform: uppercase;
}

body.single-product .single-product {
  margin: 0 !important;
}

body.single-product .single-product div.product {
  background: #fff;
  border: 1px solid var(--hh-border);
  border-radius: 22px;
  box-shadow: var(--hh-shadow);
  padding: 24px;
}

body.single-product .single-product div.product div.images .woocommerce-product-gallery__wrapper {
  background: #fff9ed;
  border: 1px solid var(--hh-border);
  border-radius: 18px;
  padding: 14px;
}

body.single-product .single-product div.product .product_title {
  color: var(--hh-earth);
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

body.single-product .single-product div.product p.price,
body.single-product .single-product div.product span.price {
  color: var(--hh-caramel) !important;
  font-size: 1.2rem !important;
  font-weight: 800;
}

body.single-product .single-product form.cart {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.single-product .single-product form.cart .button {
  background: linear-gradient(135deg, var(--hh-honey), var(--hh-honey-deep)) !important;
  border: 1px solid var(--hh-honey-deep) !important;
  border-radius: 999px !important;
  color: var(--hh-earth) !important;
  font-size: 0.83rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em;
  padding: 12px 20px !important;
  text-transform: uppercase;
}

body.single-product .single-product .woocommerce-product-details__short-description,
body.single-product .single-product .product_meta {
  color: #5d4427;
}

body.single-product .related.products {
  margin-top: 26px !important;
}

body.single-product .related.products h2 {
  font-size: 1.7rem;
  margin-bottom: 16px;
}

@media screen and (max-width: 1199px) {
  .hh-hero-inner,
  .hh-story-grid {
    grid-template-columns: 1fr;
  }

  .hh-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hh-footer-brand {
    grid-column: 1 / -1;
  }

  .hh-footer-widgets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hh-hero-media {
    max-height: 420px;
  }

  .hh-value-grid,
  .hh-category-grid,
  .hh-product-grid,
  body.woocommerce .shop-page ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media screen and (max-width: 767px) {
  .hh-hero {
    padding-top: 24px;
  }

  .hh-hero-inner,
  .hh-story-grid {
    border-radius: 20px;
    padding: 20px;
  }

  .hh-subcopy {
    font-size: 1rem;
  }

  .hh-floating-note {
    left: 12px;
    right: 12px;
  }

  .hh-value-grid,
  .hh-category-grid,
  .hh-product-grid,
  body.woocommerce .shop-page ul.products {
    grid-template-columns: 1fr !important;
  }

  .hh-shop-hero,
  .hh-single-hero {
    margin-bottom: 18px;
    padding: 24px 0 18px;
  }

  .hh-footer {
    padding-bottom: 24px;
  }

  .hh-footer-shell {
    border-radius: 20px;
    padding: 20px;
  }

  .hh-footer-grid,
  .hh-footer-widgets {
    grid-template-columns: 1fr;
  }

  .hh-footer-bottom {
    gap: 10px;
    padding: 12px 14px;
  }

  .hh-footer-social {
    margin-left: 0;
  }

  body.single-product .single-product div.product {
    padding: 16px;
  }
}


/* === Value card enhancements === */
.hh-value-card {
  background: linear-gradient(160deg, #ffffff, #fffbf2);
  border: 1px solid var(--hh-border);
  border-top: 3px solid var(--hh-honey);
  border-radius: var(--hh-radius-md);
  box-shadow: 0 5px 16px rgba(90, 54, 15, 0.08);
  padding: 28px 24px 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hh-value-card:hover {
  box-shadow: 0 12px 32px rgba(90, 54, 15, 0.15);
  transform: translateY(-4px);
}

.hh-value-icon {
  align-items: center;
  background: linear-gradient(135deg, var(--hh-honey), var(--hh-honey-deep));
  border-radius: 50%;
  display: inline-flex;
  height: 52px;
  justify-content: center;
  margin-bottom: 18px;
  width: 52px;
  box-shadow: 0 4px 12px rgba(231, 154, 32, 0.28);
}

.hh-value-icon i {
  color: var(--hh-earth);
  font-size: 1.3rem;
}

.hh-value-card h2 {
  font-size: 1.38rem;
  margin-bottom: 10px;
}

.hh-value-card p {
  color: #6a4a1f;
  margin-bottom: 0;
}

/* === Section heading accent line === */
.hh-section-heading {
  margin-bottom: 24px;
  position: relative;
}

.hh-section-heading p {
  color: var(--hh-caramel);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hh-section-heading h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  margin: 0;
}

/* === Category card hover glow === */
.hh-category-card:hover img {
  transform: scale(1.06);
}

.hh-category-card:hover::after {
  background: linear-gradient(180deg, transparent 20%, rgba(49, 29, 8, 0.68));
}

/* === Values section background === */
.hh-values {
  padding: 14px 0 36px;
}

/* === Product card hover === */
.hh-product-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hh-product-card:hover {
  box-shadow: 0 12px 28px rgba(90, 54, 15, 0.14);
  transform: translateY(-3px);
}

/* === Kicker bee emoji spacing === */
.hh-kicker .hh-bee {
  margin-right: 4px;
}

/* Hamilton Hives enhancements */
.hh-value-icon {
  align-items: center;
  background: linear-gradient(135deg, #f6b744, #e79a20);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(231,154,32,0.3);
  display: inline-flex;
  height: 52px;
  justify-content: center;
  margin-bottom: 18px;
  width: 52px;
}
.hh-value-icon i {
  color: #5f360f;
  font-size: 1.3rem;
}
.hh-value-card {
  background: linear-gradient(160deg, #ffffff, #fffbf2);
  border: 1px solid rgba(95,54,15,0.2);
  border-top: 3px solid #f6b744;
  border-radius: 16px;
  box-shadow: 0 5px 16px rgba(90,54,15,0.08);
  padding: 28px 24px 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.hh-value-card:hover {
  box-shadow: 0 14px 34px rgba(90,54,15,0.16);
  transform: translateY(-4px);
}
.hh-product-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.hh-product-card:hover {
  box-shadow: 0 12px 28px rgba(90,54,15,0.14);
  transform: translateY(-3px);
}