/*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize */
/*
Document
========
*/
/**
Use a better box model (opinionated). Box sizing should not be inherited. (https://www.oddbird.net/2025/09/04/box-model/)
*/
*,
::before,
::after {
  box-sizing: border-box;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the line height in all browsers.
3. Prevent adjustments of font size after orientation changes in iOS.
4. Use a more readable tab size (opinionated).
*/
html {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; /* 1 */
  line-height: 1.15; /* 2 */
  -webkit-text-size-adjust: 100%; /* 3 */
  tab-size: 4; /* 4 */
}

/*
Sections
========
*/
/**
Remove the margin in all browsers.
*/
body {
  margin: 0;
}

/*
Text-level semantics
====================
*/
/**
Add the correct font weight in Chrome and Safari.
*/
b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
Tabular data
============
*/
/**
Correct table border color inheritance in Chrome and Safari. (https://issues.chromium.org/issues/40615503, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/
table {
  border-color: currentcolor;
}

/*
Forms
=====
*/
/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/
legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Interactive
===========
*/
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}

:root {
  --gold: #ebac00;
  --pale-teal: #b3ddd9;
  --light-teal: #7bc0b9;
  --teal: #358e8e;
  --deep-teal: #015d5c;
  --dusty-teal: #799c92;
  --sea-foam: #eef2f2;
  --body-text: var(--deep-teal);
  --nav-text: var(--gold);
  --button-bg: var(--teal);
  --button-fg: white;
  --footer-bg: var(--dusty-teal);
  --footer-fg: white;
  --footer-border: var(--gold);
  --header-text: var(--teal);
  --product-header: var(--deep-teal);
  --section-border: var(--pale-teal);
  --variant-alpha-bg: var(--pale-teal);
}

h2, .h2 {
  font-size: 2rem;
  color: var(--header-text);
  font-weight: 700;
}

/*
Which is the standard for headers, sticky or normal? I'm seeing more sticky, I think.
If nothing else, sticky is fancier, and I think I'm more often annoyed by having to scroll up.
*/
/* What is the best standard for units? em? rem? px? */
/* Is margin or gap typically better for flex? */
html {
  min-width: 100vw;
}

body {
  font-family: Ubuntu, sans-serif;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

main {
  background-color: white;
  color: var(--body-text);
}

p {
  font-size: 1em;
  line-height: 1.8;
  font-weight: 300;
}

.inner-div {
  margin-left: auto;
  margin-right: auto;
  padding: 0.5rem 2rem;
  max-width: 1200px;
}

.outer-div.variant-alpha {
  background-color: var(--variant-alpha-bg);
}

.highlighted-passage {
  color: var(--gold);
}

ul {
  list-style: none;
}

header {
  background-color: white;
  color: var(--gold);
  top: 0;
  position: sticky;
  font-family: Kavoon, serif;
  border-bottom: 1px solid #ddd;
  letter-spacing: 1px;
  z-index: 999;
  /* Style label tag */
  /* Style span tag */
  /* Toggle menu icon */
}
header .superheader {
  background-color: var(--gold);
  color: black;
  min-height: 2rem;
}
header .header-row {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header .header-right {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
header .header-right .actions {
  margin-left: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
}
header ul.header-nav > li {
  margin-right: 1.25rem;
}
header ul.header-nav > li a {
  color: var(--gold);
  text-decoration: none;
}
header .header-nav {
  display: flex;
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
  font-weight: normal;
}
header .hamb {
  padding: 10px;
}
header .hamb-line {
  background: black;
  display: block;
  height: 2px;
  position: relative;
  width: 24px;
}
header .hamb-line::before,
header .hamb-line::after {
  background: black;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}
header .hamb-line::before {
  top: 0.5rem;
}
header .hamb-line::after {
  top: -0.5rem;
}
header .side-menu {
  display: none;
}
header .side-menu:checked ~ nav {
  max-height: 100vh;
}
header .side-menu:checked ~ .hamb .hamb-line {
  background: transparent;
}
header .side-menu:checked ~ .hamb .hamb-line::before {
  transform: rotate(-45deg);
  top: 0;
}
header .side-menu:checked ~ .hamb .hamb-line::after {
  transform: rotate(45deg);
  top: 0;
}
header .mobile-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  right: 0;
  background-color: white;
  max-height: 0;
  transition: max-height 0.5s ease-out;
  overflow: hidden;
}
header .mobile-menu .mobile-menu-search-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 0.25rem;
  align-items: center;
}
header .mobile-menu .mobile-menu-search-row .mobile-menu-search {
  width: 75%;
}
header .mobile-menu ul.mobile-nav {
  padding-right: 1rem;
  padding-bottom: 1rem;
}
header .mobile-menu ul.mobile-nav > li {
  text-align: right;
  margin-right: 1.25rem;
  margin-bottom: 1em;
}
header .side-menu:checked ~ .mobile-menu {
  max-height: none;
  height: 100vh;
}

img.logo {
  width: auto;
  height: 3rem;
}
@media only screen and (min-width: 600px) {
  img.logo {
    height: 4rem;
  }
}

img.logo-large {
  width: auto;
  height: 9rem;
}

.superheader-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}
.superheader-row .superheader-callout {
  padding: 0.5em;
  font-size: 1rem;
  background-color: white;
  margin-right: 2rem;
  font-weight: bolder;
  font-style: italic;
  color: #666;
}

main .two-up {
  margin: 2em auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
@media only screen and (min-width: 600px) {
  main .two-up {
    flex-direction: row;
  }
}
main .two-up .two-up-left, main .two-up .two-up-right {
  width: 100%;
}
@media only screen and (min-width: 600px) {
  main .two-up .two-up-left, main .two-up .two-up-right {
    width: 50%;
  }
}
main .two-up .two-up-left img, main .two-up .two-up-right img {
  max-width: 100%;
}
main .two-up .two-up-text {
  background-color: white;
  padding: 1em 2em 2em 2em;
  height: 100%;
}
main .two-up .two-up-text p {
  color: var(--teal);
}
main .card-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin: 2rem 0;
  gap: 1em;
}
main .card-row .card-wrapper {
  width: 40%;
}
@media only screen and (min-width: 600px) {
  main .card-row .card-wrapper {
    width: 10%;
  }
}
main .card-row .card-wrapper img {
  height: auto;
  width: 100%;
  filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.5));
}

footer {
  background-color: var(--footer-bg);
  color: var(--footer-fg);
  padding: 2rem 0;
  border-top: 0.25rem solid var(--footer-border);
  flex: 1;
}
footer .footer-row {
  display: flex;
  flex-direction: column;
  gap: 2em;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 600px) {
  footer .footer-row {
    flex-direction: row;
    align-items: flex-start;
  }
}
footer .footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
footer .footer-right {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}
footer ul.footer-nav > li {
  line-height: 2;
}
footer .footer-nav {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
footer .footer-social-icons {
  display: flex;
  flex-direction: row;
}
footer .footer-social-icon {
  width: 2.5rem;
  height: auto;
}
footer .copyright-block {
  padding: 1rem 0;
}

.nav-label {
  font-weight: bold;
}

.btn {
  display: inline-block;
  background-color: var(--button-bg);
  color: var(--button-fg);
  font-size: 1.25rem;
  font-weight: 400;
  text-decoration: none;
  border-radius: 0.5rem;
  border-width: 0;
  padding: 0 1rem;
  height: 3rem;
}

.highlighted-passage {
  color: var(--gold);
}

@media only screen and (max-width: 599px) {
  .not-mobile {
    display: none !important;
  }
}

@media only screen and (min-width: 600px) {
  .mobile-only {
    display: none !important;
  }
}

.selection-caret {
  max-width: 0.5rem;
}

.product-boxes {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
}
@media only screen and (min-width: 600px) {
  .product-boxes {
    flex-direction: row;
  }
}
.product-boxes .product-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}
@media only screen and (min-width: 600px) {
  .product-boxes .product-box {
    flex-direction: row;
  }
}
.product-boxes .product-box .product-box-left {
  margin-right: 20px;
}
.product-boxes .product-box .product-box-left img {
  max-width: 100%;
}
.product-boxes .product-box .product-box-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-boxes .product-box .product-box-right .product-box-text {
  line-height: 1.75;
}
.product-boxes .product-box .product-box-right .product-box-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--product-header);
}

.catalog-header {
  background-color: var(--pale-teal);
  background-image: url("../img/honeyscamps-logo-translucent-top.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right 1rem top 0.25rem;
  padding: 1rem 1rem;
}
.catalog-header h2 {
  color: var(--deep-teal);
}
.catalog-header h2 {
  font-weight: 500;
  font-size: 3rem;
  margin: 0;
}

.product-listings {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem;
}
.product-listings .product-listing {
  width: 300px;
}
.product-listings .product-listing .product-listing-image-wrapper {
  height: 300px;
}
.product-listings .product-listing .product-listing-image-wrapper img {
  width: 100%;
  height: auto;
}
.product-listings .product-listing .product-listing-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: var(--sea-foam);
  padding: 0.25rem 1rem;
}
.product-listings .product-listing .product-listing-info .product-listing-title {
  font-weight: 400;
}
.product-listings .product-listing .product-listing-info p {
  line-height: 1;
}

.product-selections.mobile-only {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  margin: 0.5rem 1rem;
}
.product-selections.mobile-only .product-filters, .product-selections.mobile-only .product-sort {
  width: 50%;
  height: 100%;
  border: 1px solid var(--deep-teal);
  padding: 0.5rem 0.25rem;
  text-align: center;
}

.product-selections.not-mobile {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 1.5rem;
}
.product-selections.not-mobile .product-filters, .product-selections.not-mobile .product-sort {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  width: 40%;
}
.product-selections.not-mobile .product-filters .selection, .product-selections.not-mobile .product-sort .selection {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  text-wrap: nowrap;
}
.product-selections.not-mobile .product-filters {
  justify-content: flex-start;
}
.product-selections.not-mobile .product-sort {
  justify-content: flex-end;
}
.product-selections.not-mobile .product-item-count {
  opacity: 0.6;
}

/*# sourceMappingURL=style.css.map */
