/** Shopify CDN: Minification failed

Line 443:5 Cannot use type selector "-message" directly after nesting selector "&"
Line 448:5 Cannot use type selector "-icon" directly after nesting selector "&"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:collection-list (INDEX:8) */
.section-collections {
    display: block;
    position: relative;
  }
  
  .list-collections__item-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
  }
  
  .list-collections__item {
    text-align: center;
    background: rgb(var(--secondary-background));
    border-radius: var(--block-border-radius-reduced);
    z-index: 0;
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    transition: transform 0.3s ease;
  }
  
  .list-collections__item.image-zoom {
    will-change: transform;
  }
  
  
  .list-collections__item-image-wrapper {
    height: 100%;
    position: relative;
  }
  
  .list-collections__item.has-overlay .list-collections__item-image-wrapper:before {
    content: "";
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .list-collections__item-image {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .list-collections__item-info {
    z-index: 1;
    width: 100%;
    padding: 16px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    box-sizing: border-box;
  }
  
  .list-collections__item-info .heading,
  .list-collections__item-info p {
    overflow: hidden;
    word-break: break-word;
    text-overflow: ellipsis;
    hyphens: auto;
    color: #fff;
  }
  
  @media screen and (max-width: 740px) {
    .list-collections__item-list {
      grid-template-columns: repeat(2, 1fr);
      padding: 0;
      gap: 10px;
    }
    
    .list-collections__item-info .heading {
      font-size: 1.2rem;
      margin: 0.5em 0;
    }
    
    .list-collections__item-info p {
      font-size: 0.75rem;
      margin: 0.5em 0;
    }
  }
  
  @media screen and (min-width: 1000px) {
    .list-collections__item-info {
      padding-inline: var(--container-gutter);
    }
  }
/* END_SECTION:collection-list */

/* START_SECTION:ds-collection-list-collage (INDEX:12) */
.ds-collection-list-collage {
  margin: var(--vertical-breather) 0;
  .mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 auto;
    max-width: var(--page-width);
    height: calc(100vh - var(--header-height, 80px));
    min-height: 400px;
    
    figure {
      position: relative;
      margin: 0;
      overflow: hidden;
    }
    
    .big {
      grid-column: 1 / span 2;
      grid-row: 1 / span 2;   
    }
    
    .top {
      grid-column: 3 / span 2; 
      grid-row: 1;        
    }
    
    .bottom {
      grid-column: 3 / span 2; 
      grid-row: 2;          
    }
    
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease-in-out;
    }
    
    /* Hover-Effekte */
    figure:hover {
      img {
        transform: scale(1.1);
      }
      
      .mosaic-overlay {
        background: rgba(0, 0, 0, 0.4);
      }
    }
    
    /* Mobile Ansicht */
    @media (max-width: 768px) {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      height: auto;
      max-height: none;
      
      .big,
      .top,
      .bottom {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 1/1;
        height: auto;
      }
    }
  }
  
  .mosaic-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .mosaic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: background 0.3s ease;
  }
  
  .mosaic-placeholder {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    
    .placeholder__image {
      width: 100%;
      height: 100%;
      fill: #ddd;
    }
  }
  
  .mosaic-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-decoration: none;
    color: white;
    
    .heading {
      color: white;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
      margin: 0;
      padding: 1rem;
      text-align: center;
      transition: transform 0.3s ease;
      position: relative;
      z-index: 3;
    }
    
    p {
      margin: 0;
      padding: 16px;
      text-align: center;
      color: white;
      overflow: hidden;
      word-break: break-word;
      text-overflow: ellipsis;
      hyphens: auto;
    }
  }
}
/* END_SECTION:ds-collection-list-collage */

/* START_SECTION:ds-flexible-collection-list (INDEX:13) */
.ds-collection-container {
    max-width: var(--container-max-width);
    padding-inline: var(--container-gutter);
    --container-outer-margin: 0px;
    width: 100%;
    margin-inline-start: auto;
    margin-inline-end: auto;

    @media screen and (max-width: 1000px) {
      & {
        padding-inline: 0;
      }
    }
  }

  .ds-collection-container.ds-collection-list {
    display: flex;
    align-items: center;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
    overflow-x: hidden;

    .ds-collection-list__list {
      padding-left: 20px;
      padding-right: 20px;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0;
      overflow-x: auto;
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none; /* IE/Edge legacy */
      list-style: none;

      &::-webkit-scrollbar {
        display: none;
      }
    }

    .collection-item-wrapper {
      width: var(--item-size, 200px);
      min-width: var(--item-size, 200px);
    }

    .collection-item__image {
      width: var(--item-size, 200px);
      height: var(--item-size, 200px);
      overflow: hidden;
    }

    .collection-item__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .collection-item__title {
      margin-top: 10px;
      text-align: center;
      font-size: var(--text-size-small);
    }

    .button-wrapper {
      height: 302px;
      display: flex;
      align-items: center;
      padding: 0;
      padding-inline-end: 0px;
      padding-inline-start: 0px;

      .button {
        padding: 10px;
        border-radius: 5px;
        background-color: var(--color-primary);
        color: var(--color-text);
        border: none;
        cursor: pointer;
        display: none; /* Standard: versteckt, wird bei can-scroll gezeigt */

        &:hover {
          background-color: var(--color-primary-hover);
        }

        &.disabled {
          cursor: not-allowed;
          opacity: 0.5;
          pointer-events: none;
        }
      }
    }

    &.can-scroll {
      .button-wrapper .button {
        display: flex;
      }
    }

    @media screen and (max-width: 767px) {
      &.is-hidden-mobile {
        display: none;
      }

      .collection-item-wrapper {
        width: var(--item-size-mobile, 150px);
        min-width: var(--item-size-mobile, 150px);
        scroll-snap-align: center;
      }

      .collection-item__image {
        width: var(--item-size-mobile, 150px);
        height: var(--item-size-mobile, 150px);
      }

      .button-wrapper {
        display: none;
      }

      .ds-collection-list__list {
        scroll-snap-type: x mandatory;
        padding-left: 10px;
        padding-right: 10px;
      }
    }

    @media screen and (max-width: 915px) {
      &.is-hidden-medium {
        display: none;
      }
    }
  }
/* END_SECTION:ds-flexible-collection-list */

/* START_SECTION:ds-google-map (INDEX:14) */
.google-map-container {
    width: 100%;
    height: var(--map-height, 450px);
    margin: 0 auto;
    max-width: 100%;
    position: relative;
    background-color: #f5f5f5;
    
    .google-map-wrapper {
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
      
      iframe[id^="GoogleMapFrame"] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        
        &:focus {
          outline: 2px solid #0066cc;
          outline-offset: 2px;
        }
      }
    }
    
    @media screen and (max-width: 749px) {
      height: var(--map-height-mobile, 300px);
    }
    
    @media print {
      height: 300px;
    }
  }

  .google-map-fallback {
    padding: 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
    
    &-message {
      max-width: 80%;
      margin: 0 auto;
    }
    
    &-icon {
      width: 48px;
      height: 48px;
      margin-bottom: 15px;
      color: #666;
    }
  }

  .google-map-address {
    margin-top: 20px;
    padding: 15px;
    background-color: var(--background);
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    
    p {
      margin: 5px 0;
    }
  }

  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
/* END_SECTION:ds-google-map */

/* START_SECTION:ds-messe-inhorgenta (INDEX:15) */
.messe-inhorgenta {
    padding: 4rem 2rem;
  }
  
  .messe-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    
    @media (max-width: 900px) {
      grid-template-columns: 1fr;
    }
  }
  
  .messe-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    
    img {
      width: 100%;
      height: auto;
      display: block;
    }
  }
  
  .messe-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .messe-badge {
    display: inline-block;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    width: fit-content;
  }
  
  .messe-title {
    font-family: var(--heading-font-family);
    font-style: var(--heading-font-style);
    font-weight: var(--heading-font-weight);
    font-size: 2.25rem;
    line-height: 1.2;
    margin: 0 0 1rem;
    color: rgb(var(--heading-color));
  }
  
  .messe-subtitle {
    font-family: var(--text-font-family);
    font-size: 1.125rem;
    color: rgba(var(--text-color), 0.8);
    margin: 0 0 1.5rem;
    line-height: 1.6;
  }
  
  .messe-opening-hours {
    background: rgba(var(--text-color), 0.03);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 0 0 1.5rem;
    max-width: 500px;
    border: 1px solid rgba(var(--text-color), 0.05);
    
    h3 {
      font-family: var(--heading-font-family);
      font-style: var(--heading-font-style);
      font-weight: var(--heading-font-weight);
      font-size: 1.125rem;
      margin: 0 0 1rem;
      color: rgb(var(--heading-color));
    }
  }
  
  .opening-hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.5rem;
  }
  
  .opening-hour-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    font-family: var(--text-font-family);
    
    svg {
      flex-shrink: 0;
      margin-top: 0.1875rem;
      color: rgb(var(--primary-button-background));
    }
  }
  
  .opening-hour-time {
    font-weight: 500;
    color: rgb(var(--text-color));
  }
  
  .opening-hour-days {
    color: rgba(var(--text-color), 0.7);
    font-size: 0.875rem;
  }
  
  .messe-location {
    display: flex;
    align-items: center;
    margin: 0 0 1.5rem;
    color: rgb(var(--text-color));
    font-size: 1rem;
    line-height: 1.6;
    font-family: var(--text-font-family);
    
    svg {
      flex-shrink: 0;
      vertical-align: middle;
      margin-right: 0.5rem;
      width: 1.25rem;
      height: 1.25rem;
      color: rgb(var(--primary-button-background));
      
      @media screen and (max-width: 640px) {
        width: 1.5rem;
        height: 1.5rem;
      }
    }
  }
  
  .messe-button {
    display: inline-block;
    background: rgb(var(--primary-button-background));
    color: rgb(var(--primary-button-text));
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    width: fit-content;
    transition: opacity 0.2s ease;
    
    &:hover,
    &:focus {
      opacity: 0.85;
      outline: none;
    }
    
    &:focus-visible {
      outline: 2px solid rgb(var(--primary-button-background));
      outline-offset: 2px;
    }
  }
/* END_SECTION:ds-messe-inhorgenta */