:root {
  /* colors */
  --color-mustard: #ffc82e;
  --color-gold: #ffd700;
  --color-dark-gray: #36424a;
  --color-off-black: #191919;
  --color-charcoal: #444444;
  --color-light-gray: #cccccc;
  --color-ultra-light-gray: #edeeef;
  --color-database-gray: #dbdbdb;
  --color-fog: #fafafa;
  --color-silver: #a5acb0;
  --color-light-green: #eafae7;
  --color-lime-green: #cbe15d;
  --color-shamrock-green: #007f13;
  --color-vintage-red: #ee5156;
  --color-hot-dog-red: #fa8072;
  --color-light-hot-dog-red: #fbe2df;
  /* font sizes */
  --font-size-14-desk-16-mob: clamp(0.875rem, 1.0833rem + -0.2315vw, 1rem);
  --font-size-18-desk-16-mob: clamp(1rem, 0.9167rem + 0.2315vw, 1.125rem);
  --font-size-20-desk-18-mob: clamp(1.125rem, 1.0417rem + 0.2315vw, 1.25rem);
  --font-size-28-desk-24-mob: clamp(1.5rem, 1.3333rem + 0.463vw, 1.75rem);
  --font-size-36-desk-28-mob: clamp(1.5rem, 1.0833rem + 2.3148vw, 2.25rem);
  --font-size-46-desk-28-mob: clamp(2rem, 1.0833rem + 4.6296vw, 3rem);
}

/* * */
/* * */
/* * */
/* LAYOUT */
/* * */

.wrapper-1178 {
  max-width: 1178px;
  margin: 0 auto;
}
.wrapper-1440 {
  max-width: 1440px;
  margin: 0 auto;
}
.wrapper-600 {
  max-width: 600px;
  margin: 0 auto;
}

html {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  scroll-behavior: smooth;
  color: var(--color-dark-gray);
}

header,
footer,
section {
  padding: 72px 16px;
}

img {
  width: 100%;
  display: block;
}

#logo,
#logo-bw {
  max-width: 246px;
}

h1 {
  font-size: var(--font-size-36-desk-28-mob);
  color: var(--color-shamrock-green);
  font-weight: 800;
}

h2,
h3,
h4,
h5,
h6 {
  color: black;
}

h2 {
  font-size: var(--font-size-28-desk-24-mob);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.125rem, 1.0417rem + 0.2315vw, 1.25rem);
  font-weight: 800;
  color: var(--color-shamrock-green);
  margin-top: 58px;
}

p {
  line-height: 1.65;
  font-size: var(--font-size-18-desk-16-mob);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: var(--color-off-black);
  text-decoration: wavy underline;
  transition: all 0.3s ease;
}

a:visited {
  color: var(--color-off-black);
  text-decoration: none;
}

.numbers a,
#pp,
#handle {
  text-decoration: none;
}

#handle:hover {
  text-decoration: underline;
  color: var(--color-shamrock-green);
}

/* * */
/* * */
/* * */
/* ELEMENTS */
/* * */

/* buttons */
.btn {
  display: inline-block;
  margin: 0 auto;
  background-color: black;
  color: var(--color-dark-gray);
  font-weight: 500;
  font-size: var(--font-size-14-desk-16-mob);
  text-transform: uppercase;
  text-decoration: none;
  text-align: center !important;
  padding: 16px 38px;
  border-radius: 8px;
  box-sizing: border-box;
  letter-spacing: 0.08rem;
  cursor: pointer;
}

.btn.left {
  margin-left: 0;
  margin-right: auto;
}

.btn.right {
  margin-left: auto;
  margin-right: 0;
}

/* * */
/* * */
/* * */
/* NAVIGATION */
/* * */
nav {
  background-color: white;
  padding: 24px 16px 0px;
  border-bottom: 1px solid var(--color-light-gray);
}

nav .btn {
  margin-top: 0;
}

#contact-btn {
  background-color: var(--color-lime-green);
  color: var(--color-shamrock-green);
}

nav .wrapper-1440 {
  display: flex;
  justify-content: space-between;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 56px;
  align-items: center;
  padding-left: 0;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-off-black);
  font-weight: 500;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: var(--font-size-14-desk-16-mob);
}

/* mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger .bar {
  width: 28px;
  height: 2px;
  background-color: var(--color-dark-gray);
}

.hamburger .bar:first-child {
  margin-bottom: 6px;
  transition: cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
}

.hamburger .bar:last-child {
  margin-top: 6px;
  transition: cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
}

@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
    justify-content: center;
  }
}

.hamburger.toggle .bar:nth-child(2) {
  opacity: 0;
  transition: cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
}

.hamburger.toggle .bar:first-child {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.toggle .bar:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

/* needs adjustment */
.nav-links.active {
  display: block !important;
  position: absolute;
  top: 107px;
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid var(--color-light-gray);
  z-index: 99;
  box-sizing: border-box;
}

.nav-links.active li {
  text-align: center;
  padding: 28px 0;
}

/* * */
/* * */
/* * */
/* HEADER */
/* * */
header {
  background: white;
  color: black;
  text-align: left;
  padding-bottom: 0;
}

@media (max-width: 800px) {
  header {
    padding-top: 28px;
  }
}

header .wrapper-1440 {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 64px;
  align-items: end;
}

@media (max-width: 1080px) {
  header .wrapper-1440 {
    grid-template-columns: 3fr 2fr;
    gap: 28px;
  }
}

@media (max-width: 800px) {
  header .wrapper-1440 {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

#header-text {
  align-self: start;
  padding-bottom: 56px;
}

@media (max-width: 1080px) {
  #line-break {
    display: none;
  }
}

#harp-logo {
  max-width: 246px;
  margin-bottom: 28px;
}

.no-stat {
  text-align: right;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

@media (max-width: 576px) {
  .numbers {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

#header-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 28px;
  margin-top: 36px;
}

@media (max-width: 800px) {
  #header-stats {
    flex-direction: row;
    gap: 12px;
    justify-content: space-between;
  }
}

@media (max-width: 576px) {
  #header-stats {
    justify-content: space-between;
  }
}

#header-stats span {
  font-weight: 800;
  color: var(--color-vintage-red);
  font-size: var(--font-size-46-desk-28-mob);
}

#header-btns {
  display: flex;
  gap: 24px;
}

@media (max-width: 800px) {
  #header-btns {
    flex-direction: column;
    gap: 12px;
  }
}

#header-btns a {
  margin: 0;
}

@media (max-width: 800px) {
  #header-btns a {
    margin: 0;
    max-width: none;
    box-sizing: border-box;
    padding: 24px 32px;
  }
}

#donate-btn {
  background-color: var(--color-vintage-red);
  color: white;
  font-weight: 700;
  position: relative;
}

#donate-btn::before {
  display: block;
  content: "Prefer to donate directly?";
  color: black;
  position: absolute;
  top: -20px;
  left: 0px;
  right: 0;
  bottom: 30px;
  text-align: left;
  font-weight: 400;
  font-family: Arial;
  font-size: 14px;
  text-transform: none;
  letter-spacing: normal;
  text-decoration: underline;
}

@media (max-width: 800px) {
  #donate-btn::before {
    display: none;
  }
}

#shop-ebay-btn {
  background: linear-gradient(to right, #87b940, #f3af1c, #3466b1, #e53338);
  color: white;
}

#shop-ebay-btn:hover {
  background: linear-gradient(45deg, #87b940, #f3af1c, #3466b1, #e53338);
}

#shop-ebay-btn.btn {
  border: none;
  outline: none;
  position: relative;
  color: black;
}

#shop-ebay-btn.btn::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background-color: white;
  border-radius: 6px;
}

#shop-ebay-btn.btn::after {
  content: attr(data-text);
  position: relative;
  z-index: 2;
}

/* add paws later */
@media (max-width: 800px) {
  #header-image img {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }
}

/* * */
/* * */
/* * */
/* PRODUCTS */
/* * */
#products {
  background: var(--color-light-green);
  box-shadow: 0px 0px 28px var(--color-light-gray);
  position: relative;
  z-index: 9;
  mix-blend-mode: multiply;
}

#products .wrapper-1440 {
  display: grid;
  justify-content: center;
}

#products h2 {
  color: var(--color-shamrock-green);
  text-align: center;
}

#products h3 {
  color: black;
  text-align: left;
  margin-bottom: 24px;
  margin-top: 8px;
  font-weight: 500;
}

.products-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: end;
  margin-top: 38px;
  margin-bottom: 38px;
}

@media (max-width: 600px) {
  .products-list {
    grid-template-columns: 1fr;
  }
}

.products-list .card {
  background: white;
  padding: 16px 60px 28px 28px;
  text-align: left;
  border: 1px solid var(--color-dark-gray);
  border-radius: 14px;

  /* cover the entire card by the link */
  position: relative;
}

@media (max-width: 1080px) {
  .products-list .card {
    padding: 24px;
  }
}

.truncate {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  overflow: hidden;
}

.products-list .card a {
  text-decoration: none;
  color: var(--color-dark-gray);
}

.buy::after {
  content: "";

  /* cover the entire card by the link */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.products-list .card .product-image {
  width: 100%;
  max-width: 228px;
  aspect-ratio: 1 / 1;
  align-self: flex-start;
}

@media (max-width: 1080px) {
  .products-list .card .product-image {
    max-width: 90%;
    margin: 0 auto;
  }
}

.product-info {
  display: flex;
  flex-direction: row-reverse;
  /* gap: 24px; */
}

@media (max-width: 1080px) {
  .product-info {
    flex-direction: column-reverse;
    /* gap: 16px; */
  }
}

.review-stars-display {
  display: flex;
  align-items: center;
}

.rating-value {
  font-size: var(--font-size-18-desk-16-mob);
  margin-right: 6px;
  font-weight: 600;
}

.star {
  height: 28px;
  width: auto;
}

img.arrow-right {
  position: absolute;
  width: 46px;
  height: auto;
  top: 12px;
  right: 12px;
  opacity: 0.25;
  rotate: 45deg;
  transition: all 0.3s ease;
}

.products-list .card:hover img.arrow-right {
  opacity: 1;
  rotate: 0deg;
}

@media (max-width: 800px) {
  img.arrow-right {
    opacity: 1;
    rotate: 0deg;
  }
}

#products .btn {
  background-color: black;
  color: white;
  margin: auto;
}

/* * */
/* * */
/* ABOUT */
/* * */

#about {
  background: white;
}

#about h2 {
  color: var(--color-shamrock-green);
}

#about .wrapper-1440 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 800px) {
  #about .wrapper-1440 {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

#about .btn {
  background-color: var(--color-mustard);
  color: black;
  display: inline; /* override the display: block from .btn; for the instagram svg */
}

img.icon {
  max-width: 24px;
  display: inline;
  vertical-align: middle;
  margin-right: 12px;
  margin-bottom: 2px;
}

.instagram-embed {
  /* max-width: 340px; */
  min-width: 326px;
  width: 100%;
  margin: 0 auto;
  position: -webkit-sticky; /* For Safari support */
  position: sticky;
  top: 20px; /* Offset from top of viewport */
}

@media (max-width: 800px) {
  .instagram-embed {
    position: relative;
    top: 0;
  }
}

span.subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  color: var(--color-off-black);
  font-weight: 600;
  text-align: center;
}

/* * */
/* * */
/* FOOTER */
/* * */
footer {
  background-color: #fafafa;
  border-top: 1px solid var(--color-light-gray);
  /* padding: 24px 16px; */
}

@media (max-width: 800px) {
  footer {
    padding-top: 48px;
    padding-bottom: 28px;
  }
}

footer .wrapper-1440 {
  display: grid;
  justify-items: end;
  grid-template-columns: 2fr 1fr;
}

footer .wrapper-1440 .cc-container {
  margin-right: auto;
}

/* footer .copyright {
  justify-self: left;
} */

@media (max-width: 800px) {
  footer .wrapper-1440 {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

footer #legal {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1440px;
  margin: 0 auto;
  margin-top: 24px;
  color: var(--color-silver);
}

footer #legal small {
  font-size: 12px;
  line-height: 1.5;
}

footer #legal small a {
  color: var(--color-silver);
  text-decoration: underline;
  transition: all 0.3s ease;
  cursor: pointer;
}

footer #legal small a:hover {
  color: var(--color-dark-gray);
}

.social {
  display: flex;
  gap: 16px;
}

@media (max-width: 800px) {
  .social {
    margin-right: auto;
  }
}

.social img.icon:last-child {
  margin-right: 0;
}

/* * */
/* * */

#other-products {
  /* padding: 16px; */
  display: grid;
  /* Automatically wraps items into new columns that are at least 264px wide */
  grid-template-columns: repeat(auto-fit, minmax(264px, 1fr));
  gap: 18px;
}

.affiliate-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-dark-gray);
  font-weight: 600;
  border: 1px solid var(--color-database-gray);
  border-radius: 2px;
  padding: 12px 14px;
}
.tiny-fig {
  width: 46px;
  height: auto;
  /* margin-right: 8px; */
  vertical-align: middle;
}
