/** Shopify CDN: Minification failed

Line 29:7 Expected ":"

**/
/********** picture and text snippet ************/
.oken_pat_multicolumn-wrapper {
  background-color: #ffffff;
  background-size: cover;
  justify-content: space-between;
  justify-content: center;
}

.oken_pat_wrapper{
  display:flex;
  flex-flow: wrap;
  align-items: center;
}

.oken_pat_column {
  margin-bottom: 5px;
  margin-left: 10px;
  margin-right: 10px;
  padding-top: 5px;
}

.oken_pat_text_css {
  max-height: 100%;
  align="justify";
  width: calc(60% - 40px);
}

.oken_pat_pic_css {
  justify-content: center;
}
.oken_pat_pic_left { order: 1; }
.oken_pat_pic_right { order: 2; }
.oken_pat_text_left { order: 1; }
.oken_pat_text_right { order: 2; }

@media (max-width: 720px) {
  .oken_pat_text_css {
    width: 100%;
  }
  
  .oken_pat_pic_css {
    width: 100%;
    text-align: center;
  }
  
  .oken_pat_pic_left, .oken_pat_pic_right {
    order: -1;
  }
}

/************* separator snippet ************/
.oken_separator_full-width {
  width: 100vw; /* 100% der Viewport-Breite */
  font-family: "Roboto", sans-serif;
  font-style: italic;
  background-color: #f8f7f7;
  padding: 5px;
  text-align: center;
}

/************* summary circle ************/
.oken_sc_container {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 gleich breite Spalten */
    grid-template-rows: repeat(4, 1fr);   /* 4 gleich hohe Reihen */
    width: 85vw; /* Anpassung an Bildschirmgröße */
    /*max-width: 800px;*/
    /*height: 400px;*/ /* Feste Höhe */
    margin: auto;
    gap: 5px;
    justify-items: center;
    align-items: center;
}

.oken_sc_image {
    grid-column: 3 / span 2; /* Mitte, 2 Spalten breit */
    grid-row: 2 / span 2; /* Mitte, 2 Reihen hoch */
    display: flex;
    justify-content: center;
    align-items: center;
}

.oken_sc_image oken_sc_img {
    width: 120px; /* Etwas kleiner für Mobilgeräte */
    height: auto;
    display: block;
}

.oken_sc_text {
    /*background-color: lightgray;*/
    padding: 10px;
    /*text-align: center;*/
    border-radius: 5px;
    font-size: 14px;
}

/* Positionierung der Texte */
.oken_sc_top-left { grid-column: 1 / span 2; grid-row: 1 / span 2; text-align: left;}
.oken_sc_top-right { grid-column: 5 / span 2; grid-row: 1 / span 2; text-align: right;}
.oken_sc_bottom-left { grid-column: 1 / span 2; grid-row: 3 / span 2; text-align: left;}
.oken_sc_bottom-right { grid-column: 5 / span 2; grid-row: 3 / span 2; text-align: right;}

/* Anpassung für sehr kleine Bildschirme */
@media (max-width: 500px) {
    .oken_sc_container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .oken_sc_text, .oken_sc_image {
        width: 80%;
        text-align: center;
    }
}

/************* five product USPs ************/
.oken-benefits-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 30px;
  background-color: #eeeeee;
  padding: 0 4px;
}

.oken-benefits-divider {
  border: none;
  border-top: 1px solid #e0e0e0; /* Sehr helles Grau */
  margin: 8px 0 8px 0;         /* Abstand ober-/unterhalb */
  width: 100%;
  background-color: #eeeeee;
}

.oken-benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.oken-benefit-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.8;
}

.oken-benefit-text {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.oken-benefit-link {
  color: #1a1a1a; /* dunkles Grau oder passend zu deinem CI */
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s ease;
}

.oken-benefit-link:hover {
  color: #5c3d2e; /* z. B. dezenter Akzentton bei Hover */
}

/************* oken_buy_button ************/
.oken_btn_custom-button {
  display: inline-block;
  padding: 12px 12px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background-color: #000;
  border: 2px solid #000;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.oken_btn_custom-button:hover {
  background-color: #fff;
  color: #000;
  border-color: #000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/************* oken countdown ***************/
  .oken_ctd_countdown-container {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 5px;
    font-family: 'Arial', sans-serif;
  }

  .oken_ctd_countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #000;
    color: #fff;
    padding: 10px 10px;
    border-radius: 8px;
    width: 40px;
    text-align: center;
  }

  .oken_ctd_countdown-number {
    font-size: 16px;
    font-weight: bold;
  }

  .oken_ctd_countdown-label {
    font-size: 8px;
    text-transform: uppercase;
    margin-top: 5px;
  }

  .oken_ctd_countdown-separator {
    font-size: 24px;
    font-weight: bold;
    color: #000;
  }

/********** in stock message ************/
.instockicon::before {
  content: "";
  display: inline-block;
  width: 10px; /* Größe des Punktes */
  height: 10px;
  background-color: #28a745; /* Grüner Farbton */
  border-radius: 50%; /* Macht es rund */
  position: relative;
  margin-right: 6px; /* Abstand zum Text */
  animation: pulse 2s infinite ease-in-out;
}

    /* Pulsierende Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4); /* Leicht größer */
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


/************* newsletter subscribe ***************/
.newsletter-form {
  max-width: 80vw;
  margin: 4px;
  padding: 4px;
/*  background-color: #f9f9f9;*/
  border-radius: 12px;
  /*box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);*/
  font-family: sans-serif;
}

.newsletter-form-header {
  text-align: center;
  margin-bottom: 4px;
  font-size: 32pt;
  font-style: bold;
  color: #111;
}

.newsletter-form label {
  display: block;
  margin: 6px 0 6px;
  font-size: 0.95rem;
  color: #000;
  font-weight: 500;
}

.newsletter-form input {
  font-size: 16pt;
  color: #000;
}

.required-label::after {
  content: " *";
  color: #d10000;
  font-weight: bold;
}

.newsletter-form input[type="email"],
.newsletter-form input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/*.newsletter-form input:focus {
  border-color: #000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
  outline: none;
}*/

.newsletter-form button {
  margin-top: 8px;
  width: 100%;
  background-color: #000;
  color: #fff;
  border: none;
  padding: 8px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

/*.newsletter-form button:hover {
  background-color: #333;
}*/

/* Vorname & Nachname nebeneinander */
/*.name-fields {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.name-fields .field {
  flex: 1;
}*/

/* DSGVO-Checkbox */
.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-wrapper input[type="checkbox"] {
  margin: 4px 0 0;
  flex-shrink: 0;
}

.checkbox-wrapper label {
  margin: 0;
}

.checkbox-wrapper a {
  color: #000;
  text-decoration: underline;
}

/* Mobile-Optimierung */
@media (max-width: 600px) {
  .name-fields {
    flex-direction: column;
  }
}

/************* product page banner ************/
.custom-marquee-banner {
  width: 100%;
  overflow: hidden;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ddd;
  padding: 8px 0;
}

.custom-marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: marquee-scroll 40s linear infinite;
  font-size: 16px;
  color: #111;
  padding-left: 100%;
}

.custom-marquee-content {
  white-space: nowrap;
  padding-right: 60px; /* Abstand zwischen den Wiederholungen */
  font-size: 16px;
  color: #111;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}