
/* Reset und Grundstrukturen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    /*cursor: none;  --ONLY FOR CUSTOM CURSOR--*/
}

:root {
    --m: 4rem;
  }

html, body {
    font-family: 'IBM Plex Sans';
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: 100%; /* Verhindert Textgröße-Anpassungen in iOS */
    -ms-text-size-adjust: 100%; /* Verhindert Textgröße-Anpassungen in IE/Edge */
    -webkit-font-smoothing: antialiased; /* Bessere Kantenglättung in iOS/Safari */
    -moz-osx-font-smoothing: grayscale; /* Bessere Kantenglättung in macOS */
    user-select: none;
}

body {
    background-color: #000;
    color: white;
    font-family: "IBM Plex Sans";
    font-size: 11.5px;
    line-height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    position: relative;
    -webkit-appearance: none; /* Entfernt iOS/Safari-Standardbutton-Styling */
    appearance: none;
    font-weight: 300;
    color: #d5d5d5;
}

h2 {
    font-weight: 500;
    text-align: center;
    font-size: var(--m);
    margin: 0;
  }
  
  h3 {
    font-weight: 500;
    font-size: calc(0.6 * var(--m));
    margin: 0;
  }

  a {
    text-decoration: none;
    color: inherit;
    color: #d5d5d5;
  }

  .text {
    text-decoration: none;
    color: #ffffff;
    margin: 0;
    padding: 14px; 
    line-height: 1.5;
    white-space: pre-wrap; 
  }

/* Logo Container */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*touch-action: pan-y;*/
    width: 60%;
    height: auto;
}

.header-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    pointer-events: none;
    top: 40px;
    left: 50%;
    transform: translate(-50%, -50%);
    /*touch-action: pan-y;*/
    width: 60%;
    height: auto;
}

.logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Navigation Link */
.nav-link {
    position: absolute;
    top: 0px;
    padding: 10px;
    text-decoration: none;
}

.underlineonhover:hover {
    text-decoration: underline;
}

.underlineonhover {
    text-decoration: none;
}

.right {
    right: 0px;
    animation: slideInRight 0.5s forwards;
}

.top {
    animation: slideInTop 0.5s forwards;
    z-index: 10000;
}

.left {
    left: 0px;
    animation: slideInLeft 0.5s forwards;
}

.top-right {
    position: fixed;
    top: 0px;
    right: 0px;
    animation: slideInRight 0.5s forwards;
    z-index: 10000;
}

.top-left {
    position: fixed;
    top: 0px;
    left: 0px;
    animation: slideInLeft 0.5s forwards;
    z-index: 10000;
}

.href {
    text-decoration: underline;
    color: #ffffff;
    
}

.underline {
    text-decoration: underline;
}

/* Buttons Container - untereinander angeordnet */
.buttons-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: auto;
    overflow: visible;
    z-index: 7000;
}

.glass-button {
    /*background: rgba(255, 255, 255, 0.1);*/
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    box-shadow: 0 0 4px 2px rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(15px);
    border: none;
    padding: 10px 20px;
    font-size: 14.5px;
    line-height: 12.5px;
    color: white;
    border-radius: 12px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    white-space: nowrap;
    -webkit-appearance: none;
    appearance: none;
}

.email-button {
    background: rgba(255, 255, 255, 0);
    border: none;
    padding: 10px 20px;
    font-size: 14.5px;
    line-height: 12.5px;
    color: white;
    text-decoration: underline;
    border-radius: 12px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    white-space: nowrap;
    -webkit-appearance: none;
    appearance: none;
}
.email-button:hover {
    box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.glass-button:hover {
    box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.1);
}

.active-button {
    text-decoration: underline;
    box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.5);
}

.glass-panel {
    position: fixed;
    /*bottom: 20px;*/
    left: calc(150px + 40px);
    background: rgba(52, 52, 52, 0.5);
    backdrop-filter: blur(15px);
    padding: 40px 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: auto;/*300px;*/
    max-width: calc(100vw - 80px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 10000;
}

@media screen and (max-width: 1000px) {
    :root {
      --m: 3rem;
    }
  }

/* HREFs in Panels */
.glass-panel .panel-link {
    color: white;
    text-decoration: none;
    margin-right: 20px;
}

.glass-panel .panel-link:hover {
    text-decoration: underline;
}

/* Close Button (X) */
.glass-panel .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: white;
    font-size: 14.5px;
    cursor: pointer;
}

/* Copyright Text im zweiten Panel */
#panel2 .copyright {
    color: rgba(255, 255, 255, 0.5); /* Leicht transparent */
    text-align: left; /* Links bündig */
    margin-top: 20px;
}

/* Versteckte Elemente */
.hidden {
    display: none;
    visibility: hidden;
}

.visible {
    visibility: visible;
}

/* Headline für das Subscribe-Panel */
.headline {
    text-transform: uppercase;
    text-align: center;
    color: white;
    font-size: 14.5px;
    line-height: 12.5px;
    text-decoration: underline;
    font-weight: 500;
}

.small-headline {
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 10px;
    color: white;
    text-decoration: underline;
    font-weight: 500;
}

/* Email-Input */
.email-input {
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0);
    border: none;
    outline: none;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-radius: 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-decoration: none;
}

.email-input:focus{
    box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.5);
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    justify-content: center;
}

.small-button {
    padding: 8px 15px;
    border-radius: 10px;
}

input[type="email"] {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 12;
    background-color: transparent !important;
    box-shadow: none;
    color: #fff;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
    outline: none;
    text-decoration: none;
}
input[type="text"] {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 12;
    background-color: transparent !important;
    box-shadow: none;
    color: #fff;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
    outline: none;
    text-decoration: none;
}
/* CSS BEGIN */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    box-shadow: 0 0 0px 1000px transparent inset !important;
    -webkit-text-fill-color: white !important;
}
input[type="email"],
input[type="text"],
button {
    color: white !important;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none;
}
input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    background-color: #ffffff00;
}
button:focus, input:focus {
    outline: none;
}
textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
input[type="email"],
.input-checkbox {
-webkit-appearance: none;
}

.shop-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    padding: 80px 10px 10px 10px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    max-height: 70vh;
    overflow-y: auto; 
}
  
  .main-header{
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0);
  }
  
  @media (min-width: 768px) {
    .shop-container {
        grid-template-columns: repeat(2, 1fr);
    }
  }
  
  .shop-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    height: auto;
    transition: 0.3s;
  }
  
  .shop-item img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 500px;
    object-fit: cover;
  }
  
  .item-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  
  .shop-item:hover .item-info {
    opacity: 1;
  }
  
  .shop-links {
    position: relative;
    bottom: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px 0;
    background-color: black;
    z-index: 1000;
    margin-top: 20px;
  }
  
  .shop-links a {
    display: inline-block;
    margin-right: 20px;
    color: #d5d5d5;
    text-decoration: none;
  }
  
  .shop-links a:hover {
    text-decoration: underline;
  }

.header-logo {
    z-index: 10000;
    width: 80px;
    height: auto;
    display: block;
}

video::-webkit-media-controls {
    display: none !important;
  }
  
  video::-moz-media-controls {
    display: none !important;
  }
  
  video::-ms-media-controls {
    display: none !important;
  }
  
  video::-webkit-media-controls-picture-in-picture-button {
    display: none !important;
  }
  
  video::-webkit-media-controls-fullscreen-button {
    display: none !important;
  }
  
  video {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none; 
    user-select: none; 
    touch-action: none;
    pointer-events: none; 
    pointer-events: none; 
    background-color: transparent;
    user-select: none;
  }

  img {
    pointer-events: none;
    user-select: none; 
    touch-action: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none; 
    -webkit-user-drag: none;
    -moz-user-select: none; 
    -ms-user-select: none; 
    user-select: none; 
    pointer-events: none;
  }

  #content-body {
    margin-top: 20px;
    max-width: 300px;
    line-height: 1.5;
    max-height: 400px;
    overflow-y: auto;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    word-wrap: break-word; 
    overflow-wrap: break-word;
}

    .main-body {
        display: flex;
        justify-content: center;
        align-items: normal;
        height: 70vh;
        max-width: 800px;
        overflow-y: auto;
        width: 100%;
        margin: 20px auto;
        padding: 20px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        border-radius: 12px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }

    @media (max-width: 800px) {
        .main-body {
            width: calc(100% - 40px);
            margin: 20px;
        }
    }
#content-body::-webkit-scrollbar {
    width: 8px;
}

#content-body::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

#content-body::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.main-body::-webkit-scrollbar {
    width: 8px;
}
.main-body::-webkit-scrollbar-track {
    background: transparent;
}
.main-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

.main-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.7);
}

.main-body {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.5) transparent;
}
.main-body::-ms-scrollbar {
    display: none;
}

.main-body {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.5) transparent;
}

.sms-message {
    color: white;
    margin-top: 10px;
}

@media (max-width: 767px) {
    .buttons-container {
      display: flex;
      flex-direction: row;
      overflow: visible;
      justify-content: flex-start;
      gap: 10px;
      width: calc(100% - 40px);
      margin: 0;
      overflow-x: scroll;
      padding: 10px;
      margin-right: 20px;
      max-width: 100%;
    }
  
    .buttons-container::-webkit-scrollbar {
      display: none;
    }
  
    .buttons-container {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
  
    .buttons-container:active, 
    .buttons-container:hover {
      scroll-behavior: smooth;
    }
  
    .buttons-container:focus-within {
      overflow-x: auto;
    }
  
    .glass-button {
      white-space: nowrap;
      flex-shrink: 0;
    }

    .buttons-container {
        bottom: 20px;
    }

    .glass-panel .panel-link .glass-button {
        font-size: 14px;
    }

    .glass-panel {
        left: 30px;
        padding-right: 20px;
    }
    
    .mainshop-container {
        margin-bottom: 20px;
    }

    .main-body{
        height: 60vh;
    }
  }
  
  /* For screens wider than 767px (reset behavior) */
  @media (min-width: 768px) {
    .buttons-container {
      flex-direction: column;
    }
  }

  .info-text{
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
  }

  .custom-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out, width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
    z-index: 1000000;
}
.custom-cursor.hover {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%) scale(1.2);
}

.glass-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.glass-switch-circle {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: left 0.3s ease;
}

.glass-switch.active {
    background: rgba(255, 255, 255, 0.3);
}

.glass-switch.active .glass-switch-circle {
    left: 32px;
}

.switch-label {
    margin-right: 10px;
    color: white;
    font-family: "IBM Plex Sans";
}

.switch-container {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100;
    display: flex;
    align-items: center;
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInTop {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

.shake {
    animation: shake 0.5s forwards;
}

.checkbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 12px;
    height: 12px;
    border: 1px solid whitesmoke;
    border-radius: 50%;
    position: relative;
    outline: none;
    cursor: pointer;
    margin-right: 10px;
    transition: background 0.3s ease;
}

.custom-checkbox:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cart-button {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: none;
    padding: 10px;
    z-index: 2000;
    margin: 10PX;
    color: white;
    border-radius: 12px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    white-space: nowrap; /* Verhindert Zeilenumbruch */
    -webkit-appearance: none; /* Entfernt iOS/Safari-Standardbutton-Styling */
    appearance: none;
}

.cart-button:hover {
    box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.5);
}
/* iOS-Spezifisches Styling anpassen */
select::-webkit-inner-spin-button,
select::-webkit-outer-spin-button {
    -webkit-appearance: none; /* Entfernt iOS Standardpfeile */
    margin: 0;
}

select::-webkit-search-cancel-button,
select::-webkit-search-decoration {
    -webkit-appearance: none; /* Entfernt iOS Default-Styles */
}

select::-webkit-select {
    -webkit-appearance: none; /* Verhindert das iOS-Select-Styling */
}

select::-ms-expand {
    display: none;
}

/* iOS fixes for select element */
select:focus {
    outline: none; /* Entfernt das Standard-iOS-Outlining */
    border: none;
}

.link-button {
    background: none; /* Kein Hintergrund */
    border: none; /* Keine Umrandung */
    color: inherit; /* Textfarbe erben */
    cursor: pointer; /* Zeiger als Cursor */
    font: inherit; /* Schriftart erben */
    padding: 0; /* Kein Innenabstand */
    text-decoration: none; /* Keine Unterstreichung */
}

select {
    -webkit-appearance: none;
    appearance: none;
    -moz-appearance: none;
}

.link-button:hover {
    text-decoration: underline; /* Unterstreichen beim Hover */
}

  .video-wrapper {
    position: absolute; 
    top: 50%;           
    left: 50%;           
    transform: translate(-50%, -50%); 
    width: 100%;         
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    touch-action: pan-y;
}

.hover-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.hover-text.hidden {
    opacity: 0;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    margin-left: 10px;
    margin-right: 10px;
}

.collection-links {
    position: absolute;
    left: 50%; /* Horizontale Zentrierung */
    transform: translateX(-50%); /* Zentrierungsfix */
}

@media (max-width: 800px) {
    .collection-links {
        top: -50px; /* Positionieren über dem Toggler */
        display: flex; /* Flex-Layout für die Links */
        flex-direction: row; /* Links horizontal anordnen */
    }
}

@media (min-width: 800px) {
    .collection-links {
        display: flex; /* Flex-Layout für die Links */
        flex-direction: column; /* Links untereinander anordnen */
        bottom: 10px; /* Abstand vom unteren Rand */
        right: 10px; /* Abstand vom rechten Rand */
    }
}

.collection-links a {
    padding: 5px 10px; /* Padding für jeden Link */
    margin: 5px 0; /* Abstand zwischen den Links */
    text-decoration: none; /* Unterstreichung entfernen */
    color: black; /* Link-Farbe */
    border-radius: 5px; /* Abgerundete Ecken */
    background-color: rgba(255, 255, 255, 0.8); /* Hintergrundfarbe mit Transparenz */
    transition: background-color 0.3s; /* Übergangseffekt */
}

.collection-links a:hover {
    background-color: rgba(200, 200, 200, 0.8); /* Hintergrundfarbe beim Hover */
}

/* Styling für das gesamte select Element */
#social-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    text-align: center;
    padding: 10px 20px;
    font-size: 14.5px;
    line-height: 12.5px;
    color: white;
    border-radius: 12px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    appearance: none; /* Entfernt Standard-Browser-Styling */
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.8); /* Weißer Schattentext */
}

/* Entfernt das Dropdown-Symbol bei WebKit-basierten Browsern (z.B. Chrome, Safari) */
#social-select::-webkit-appearance {
    appearance: none;
}

/* Styling für die Optionsliste */
#social-select option {
    background: transparent;
    color: white;
    padding: 10px 15px;
    border: none;
    text-shadow: none;
    font-size: 14.5px;
    white-space: nowrap;
    cursor: pointer;
    border-radius: 0;
}

/* Optional: Hover-Effekt für die Optionen */
#social-select option:hover {
    background: rgba(255, 255, 255, 0.1);
    text-decoration: underline;
}

/* Fokus-Effekt beim Klicken */
#social-select:focus {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); /* Weißer Glanz beim Fokussieren */
}

.social-container {
    display: flex;
    align-items: center; /* Zentriert die Elemente vertikal */
    gap: 20px; /* Abstand zwischen den Elementen */
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    #social-select {
        font-size: 14.5px;
        padding: 10px 20px;
    }
    #social-select option {
        background: rgba(0, 0, 0, 0.1);
        color: white;
    }
}

.jump {
    animation: jump 0.5s ease-in-out;
}

@keyframes jump {
    0% { transform: translateY(0); }
    25% { transform: translateY(-5px); }
    50% { transform: translateY(5px); }
    75% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

.mainshop-container {
    max-width: 880px;
    margin: 0;
    padding: 0;
    height: calc(100% - 80px);
    overflow-y: scroll;
    box-sizing: border-box;
    position: relative;
    top: 80px;
    scrollbar-width: none;
    z-index: 5000;
    overflow: auto;
}

.mainshop-container::-webkit-scrollbar {
    display: none; /* Versteckt die Scroll-Leiste in Webkit-Browsern */
}

/* Container für die Items */
.mainshop-items {
    display: flex; /* Flexbox verwenden */
    flex-wrap: wrap; /* Items in Zeilen anordnen */
}

/* Zwei Spalten für die Items */
.mainshop-item {
    display: flex; /* Flexbox verwenden */
    flex-direction: column; /* Elemente innerhalb des Items untereinander anordnen */
    width: 50%; /* Breite ohne Abzug für Zwischenraum */
    box-sizing: border-box;
    text-align: center;
    background-color: black;
    cursor: pointer;
    position: relative;
    overflow: hidden; /* Bild bleibt im Rahmen */
    vertical-align: top;
    border: 1px solid rgba(255, 255, 255, 0.3); /* Durchgehende Grenze für jedes Item */
}

/* Bild quadratisch mit 20px margin, aber nur für das Bild */
.mainshop-item img {
    width: calc(100% - 80px); /* Bild innerhalb des Containers */
    height: auto; /* Höhe automatisch */
    margin: 115px 40px 40px 40px;
    object-fit: contain; /* Verhindert das Zuschneiden des Bildes */
    flex-grow: 1; /* Bild füllt den verfügbaren Platz aus */
}

.mainshop-item .info {
    padding: 10px 0;
    height: auto; /* Höhe anpassen */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mainshop-item .name {
    margin: 0;
    line-height: 13px;
}

.mainshop-item .price {
    margin-top: 10px;
    line-height: 13px;
}

/* Horizontale Linie über jeder Zeile */
.mainshop-item::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: -20px; /* Platzierung über dem Element */
    left: 0;
    z-index: 6000;
}

/* Medienabfrage für kleinere Bildschirme */
@media (max-width: 920px) {
    .mainshop-container {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
}

#label-toggle-container {
    margin-top: 10px;
    margin-right: 10px;
}

.clickcursor {
    cursor: pointer;
}

@keyframes fade-in{
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade-out{
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}


.fade-in{
    opacity: 0;
    animation: fade-in .5s .7s ease forwards;
        animation-duration: 0.5s;
        animation-timing-function: ease;
        animation-delay: 0.7s;
        animation-iteration-count: 1;
        animation-direction: normal;
        animation-fill-mode: forwards;
        animation-play-state: running;
        animation-name: fade-in;
        animation-timeline: auto;
        animation-range-start: normal;
        animation-range-end: normal;
}

.fade-out{
    opacity: 1;
    animation: fade-in .5s .7s ease forwards;
        animation-duration: 0.5s;
        animation-timing-function: ease;
        animation-delay: 0.7s;
        animation-iteration-count: 1;
        animation-direction: normal;
        animation-fill-mode: forwards;
        animation-play-state: running;
        animation-name: fade-out;
        animation-timeline: auto;
        animation-range-start: normal;
        animation-range-end: normal;
}

.soft-shake {
    animation: soft-shake 13s infinite;
    animation-duration: 13s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    animation-name: soft-shake;
    animation-timeline: auto;
    animation-range-start: normal;
    animation-range-end: normal;
}

@keyframes soft-shake {
    0% {
        transform: translateY(0px) rotate(-5deg);
    }
    45% {
        transform: translateY(0px) rotate(5deg);
    }
    100% {
        transform: translateY(0px) rotate(-5deg);
    }
}

*::-webkit-scrollbar-track {
    background: transparent; /* Transparenter Hintergrund der Scrollbar */
  }
  
  /* Entfernt die Pfeiltasten von allen Scrollbars in Webkit-basierten Browsern */
  *::-webkit-scrollbar-button {
    display: none; /* Versteckt die Pfeile an den Scrollbalken */
  }

  @keyframes floating {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    45% {
        transform: translateY(-8px) rotate(0deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
  }

.floating {
    animation: floating 3s infinite;
    animation-duration: 3s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    animation-name: floating;
    animation-timeline: auto;
    animation-range-start: normal;
    animation-range-end: normal;
}

.scroll-effect{
    width: 100%;
    height: 140px;
    position: fixed;
    bottom: 0px;
    background: linear-gradient(to bottom, transparent, black);
}

.text-box{
    background-color: #111111;
    font-family: monospace;
    color: #84898E !important;
    width: auto;
    padding: 2px;
    margin: 10px;
    display: flex;
    flex-direction: row;
}