:root {
  /* see variables.scss for more variables*/

  /*
    --section-light-text-color: #3a4145!important;
    --section-light-bg-color: #ffdb8c!important;
    --section-dark-bg-color: #035e00!important;
    */

  /* define list element for unnumbered lists, leave empty for default list element */
  /* with this non-empty, JS code adds stray classes to ul */
  /* this sets the default html list icon */
  --ul-li-icon: ;
}

.blog-title em,
.blog-description em {
  color: red;
  font-style: normal;
  font-size: 110%;
}

.langswitch {
  color: black;
  font-size: 60%;
}

.langswitch img {
  height: 1em;
}

label,
input,
textarea {
  width: 100%;
}

textarea {
  height: 6em;
}

.payment-link img {
  height: 4em;
}

.small-side-image {
  float: right;
  width: 35%;
  padding-left: 1em;
}

#site-head {
  background-image: url('/images/2025/many-kazoo-frontpage.webp') !important;
  animation: morphBlur 1.5s;
}

@keyframes morphBlur {
  0% {
    filter: blur(15px);
  }
  100% {
    filter: blur(0px);
  }
}

product-selector ul,
product-selector li {
  list-style: none;
  margin: 0;
  padding: 0;
}

product-selector li,
product-selector h3,
product-selector p,
product-selector img {
  margin: 0;
  padding: 0;
}

product-selector img {
  width: 100%;
  height: auto;
  display: block;
}

product-selector {
  display: block;
  max-width: 600px;
  margin: 0;
  min-width: 100%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-color: rgb(242, 239, 232);
}

.color-menu {
  padding: 3px;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
  text-align: center;
}

.color-button {
  padding: 8px 16px;
  border: 2px solid #dee2e6;
  background: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 70%;
  transition: all 0.3s ease;
}

.color-button:hover {
  border-color: #007bff;
  background: #f8f9ff;
}

.color-button.active {
  border-color: #007bff;
  background: #007bff;
  color: white;
}

.product-container {
  position: relative;
  overflow: hidden;
}

.product-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  transition: transform 0.3s ease;
}

.product-item {
  min-width: 100%;
  padding: 10px;
  text-align: center;
  box-sizing: border-box;
}

.product-item h3 {
  margin: 0 0 10px 0;
  font-size: 24px;
  color: #333;
  font-weight: 600;
}

.product-item img {
  max-width: 100%;
  max-height: 400px;
  width: auto;
  height: auto;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.product-item img:hover {
  transform: scale(1.02);
}

.product-item p {
  margin: 0px 0 0 0;
  font-size: 20px;
  font-weight: 600;
  color: #007bff;
}

product-selector  .image-container {
  position: relative;
  display: inline-block;
}

product-selector .image-container img {
  display: block;
  width: 100%;
  height: auto;
}

 .chevron {
  position: absolute;
  bottom: 0%;
  transform: translateY(-50%);
  background: white;
  opacity: 50%;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  pointer-events: none;
}

.chevron-left {
  left: 15px;
}

.chevron-right {
  right: 15px;
}

.chevron svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.dark .product-item {
  background-color: rgb(184, 1, 53);
  xbox-shadow: 0px 0px 2px 2px white;
  border: solid rgb(193, 76, 109) 2px;
}

.dark .product-item h3 ,
.dark .product-item p
{
  color: white;  
}

cart-status {
  cursor: pointer;
}

.fixed-nav {
  display: none !important;
}

.dark blockquote {
  color:rgb(244, 179, 122);
}