/** Shopify CDN: Minification failed

Line 921:4 "backgroun-color" is not a known CSS property
Line 2147:23 Expected ":"
Line 2147:31 Expected ":"

**/
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Regular (400) */
@font-face {
    font-family: 'Archivo Narrow';
    src: url('//usium.de/cdn/shop/t/14/assets/ArchivoNarrow-Regular.ttf?v=148134928500284067851731234271') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Bold (700) */
@font-face {
    font-family: 'Archivo Narrow';
    src: url('//usium.de/cdn/shop/t/14/assets/ArchivoNarrow-Bold.ttf?v=137421330842948614471731234271') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Italic (400) */
@font-face {
    font-family: 'Archivo Narrow';
    src: url('//usium.de/cdn/shop/t/14/assets/ArchivoNarrow-Italic.ttf?1241') format('truetype');
    font-weight: 400;
    font-style: italic;
}

/* Bold Italic (700) */
@font-face {
    font-family: 'Archivo Narrow';
    src: url('//usium.de/cdn/shop/t/14/assets/ArchivoNarrow-BoldItalic.ttf?1241') format('truetype');
    font-weight: 700;
    font-style: italic;
}

/*@font-face {
  font-family: Helvetica;
  font-weight: 400;
  font-style: normal;
  src: url("//usium.de/cdn/fonts/helvetica/helvetica_n4.fe093fe9ca22a15354813c912484945a36b79146.woff2?h1=NjFlYTU0LmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=dXNpdW0uZGU&h3=dXNpdW0tc3R1ZGlvLmRl&hmac=f32422682b723799ef0cf2c2368c787154293a457b4dcc5baa2463a392735620") format("woff2"),
       url("//usium.de/cdn/fonts/helvetica/helvetica_n4.8bddb85c18a0094c427a9bf65dee963ad88de4e8.woff?h1=NjFlYTU0LmFjY291bnQubXlzaG9waWZ5LmNvbQ&h2=dXNpdW0uZGU&h3=dXNpdW0tc3R1ZGlvLmRl&hmac=08a40a252c0734ba43e44c6f0b6ad80fe7d6eb9d87312cd541ade190c94e578f") format("woff");
}
*/


:root{

    --font-family: 'Archivo Narrow', Arial, sans-serif;
    
    --fs-xs: 0.8rem;
    --fs-s: 0.9rem;
    --fs-m: 1rem;
    --fs-l: 1.5rem;
    --fs-xl: 1.875rem;
    --fs-xxl: 3.75rem;

    --fw-regular: 400;
    --fw-bold: 700;

    --clr-off-white: #ffffff;
    --clr-black: #000000;
    --clr-grey: #BCBCBC;
    --clr-light-grey: #F7F7F7;
    --clr-dark-grey: #4E4E4E;
    --clr-green: #80FF9C;
    --clr-blue: #001AFF;
    --clr-red: #FF2E00;

}
/*//////// GLOBAL /////////////*/

.page{

}

.current{

}


.noSelect {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.noSelect:focus {
    outline: none !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    outline: none;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder {
    color: var(--clr-black); /* Beispiel-Farbe für den Platzhalter-Text */
    opacity: 20%; /* Entfernt die Standard-Transparenz */
}

.section{
    display:flex;
    flex-direction: column; 
    padding:1rem;
    gap: 0.2rem;
}

h1, h2, h3, h4, h5, h6, a, button, div, p {
    text-transform: uppercase;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

h1{
    text-transform: uppercase; 
    font-weight: var(--fw-bold);
    color: var(--clr-black);
    font-size: var(--fs-m);
}

body{
   font-family: var(--font-family);
   font-weight: var(--fw-regular);
   background-color: var(--clr-off-white);
}

a{
    text-decoration:none;
    color: var(--clr-black)
    transition: 0.3s ease-out;
}

ul{
    list-style:none;
}

.icons{
    width: 22px;
}

select{
    padding: 5px 0px;
    border: none;
    border-radius: none;
    background-color:transparent;
    cursor: pointer;
    font-family: var(--font-family);
    transition: 0.3s ease-out;
    color: var(--clr-black);
    font-size:var(--fs-xs);
    min-width: 100px;
}

option{
    color: var(--clr-black);
}

button{
    background-color: transparent;
    border:none;
    font-size: var(--fs-s);
    text-transform: uppercase;
    font-family: var(--font-family);
    cursor: pointer;
    color: var(--clr-off-white);
    transition: 0.3s ease-out;
    text-align: center;
}

.quantity-selector{
    display: flex;
    gap: 1rem;
}

.quantity-selector-plus, .quantity-selector-minus{
    cursor: pointer;
    font-size: var(--fs-s);
}

.button-1{
    color: white;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    border: 1px solid transparent;
    transition: 0.3s ease-out;
    width: auto; 
    cursor: pointer;
    background-color: var(--clr-black);
    padding: 1rem 1rem;
    font-size: var(--fs-s);
    justify-content: center; 
    font-family: var(--font-family);
}

.button-1:hover{
    gap: 1rem; 
    opacity: 50%;
}


.button-1 p{
    font-size: var(--fs-s);
}

.button-2{
    color: var(--clr-black);
    display: flex;
    gap: 0.5rem;
    align-items: center;
    border: 1px solid transparent;
    transition: 0.3s ease-out;
    width: auto; 
    cursor: pointer;
    padding: 1rem 1rem;
    font-size: var(--fs-s);
    justify-content: center;
    border: 1px solid var(--clr-black); 
    text-transform: none;
}

.button-2:hover{
    opacity: 50%;
}


.button-small{
    display: flex;
    gap: 0.5rem;
    align-items: center;
    transition: 0.3s ease-out;
    cursor: pointer;
}

.button-small a{
    font-size: var(--fs-xs);
    text-transform: uppercase;
}

.button-small p{
    font-size: var(--fs-xs);
    text-transform: uppercase;
}

.button-small input{
    background-color: transparent;
    text-transform: uppercase;
    border:none;
}


.button-small:hover{
    gap: 1rem;
    opacity: 30%;
}



/*//////// HEADER /////////////*/

header{
    width: 100%;
    display:flex; 
    flex-direction:row;
    justify-content: space-between; 
    align-items: center;
    padding: 1rem 50px;
    position: sticky;
    top:0;
    z-index: 10;
    background-color: var(--clr-off-white);
    transition: 0.5s ease-in-out;
}

.header-active{
    top:-100%;
}

.item-count-wrapper{
    position: relative;
    display:flex;
    justify-content: center;
    align-items: center;
    background-color: var(--clr-black);
    padding: 2px 4px;
    border-radius: 5px;

}

.item-count{
    color: var(--clr-off-white);
    background-color: var(--clr-black);
    width: 18px;
    height: 18px;
    font-weight: var(--fw-regular);
    display: flex; 
    justify-content: center;
    align-items: center;
    font-size: var(--fs-xs);
    border-radius: 100%; 
}

.nav-links{
    display: flex; 
    flex-direction: row;
    gap: 1rem;
    list-style: none;
    width: 300px;
}

.nav-links li a {
    text-transform: uppercase;
    font-weight: var(--fw-regular);
    transition: 0.3s ease-out;
    font-size: var(--fs-xs);
}

.nav-links li a:hover{
    opacity: 50%;
}

.logo {
    width: 15rem;
}


.banner {
    width: 100%; 
    height: 100vh;
    background-image: url("//usium.de/cdn/shop/t/14/assets/banner-05.jpg?v=155721529756228094651731234271");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner svg{
    max-width:1300px;
    padding: 2rem;
}

.header-icons-wrapper{
    display: flex;
    gap: 0.5rem;
    width: 300px; 
    justify-content: flex-end;
}

.header-icons{
    width: 22px;
    transition: 0.3s ease-out;
    position: relative;
}

.header-icons:hover{
    transform: scale(1.1);
}




.mobile-header{
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    background-color: var(--clr-off-white);
    padding: 15px;
    height: 100dvh;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: strech;
    z-index: -1;
    transition: 0.3s ease-out;

}

.mobile-header-active{
    left: 0;
    box-shadow: 0px 5px 30px rgb(0,0,0,0.2);
}

.mobile-nav-links{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
}

.mobile-nav-links li{
    font-size: var(--fs-s);
    padding: 5px 0;
    transition: 0.3s ease-in-out;
}

.mobile-nav-links li:hover{
   padding-left: 10px;
}

.mobile-nav-kundenkonto{
    border-top: 1px solid rgb(0,0,0,0.2);
    display: flex;
    gap: 5px;
    padding-top: 10px;
    align-items: center;
}

.mobile-nav-kundenkonto p{
    font-size: var(--fs-xs);
}


.burgermenu{
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 3px;
    display: none;
    width: 300px;
    cursor: pointer;
}

.burgermenu div{
    width: 22px;
    height: 2px;
    background-color: var(--clr-black);
    transition: 0.3s ease-out;
}

.burgermenu div:nth-child(2){
    width: 11px;
}

.burgermenu-active div:nth-child(1){
    transform: rotateZ(45deg) translateX(6.5px);
}

.burgermenu-active div:nth-child(2){
   opacity: 0;
}

.burgermenu-active div:nth-child(3){
    transform: rotateZ(-45deg) translateX(6.5px);
}


/*////////////// BREADCRUMB ////////////////////*/

.breadcrumb-wrapper{
    padding: 20px;
    display: flex;
    gap: 0.5rem;
    justify-content: start; 
    align-items: center;
    width: 100%; 
    position: sticky;
    font-weight: var(--fw-bold);
    border-top: 1px solid var(--clr-grey);
    border-bottom: 1px solid var(--clr-grey);
}

.breadcrumb-icon{
    width: 20px;
    height: auto;
}

.return-arrow{
    width: 6px;
    height: auto;
}

.account-breadcrumb{
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.account-breadcrumb-title{
    display: flex;
    gap: 0.5rem;
}



/*////////////// PRODUCT-ITEM ////////////////////*/
.product-item-wrapper{
    width: 50%;
    border: 1px solid var(--clr-grey);
    border-bottom: 0;
    display: flex;
    flex-direction:column;
}

.product-item-wrapper:nth-child(2n) {
    border-left: 0; /* Kein Rand rechts bei jedem ersten Produkt */
    border-right: 0;
}


.product-item{
    position: relative;
}


.product-label{
    z-index: 8;
    bottom: 0;
    position: relative;
    width: 100%;
}

.product-label-item{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background-color: var(--clr-light-grey);
    padding: 10px 25px;
}

.platzhalter{

}

.product-item-title-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}


.product-item-title-wrapper h3{
    font-size: var(--fs-m);
    display: flex;
    font-weight: var(--fw-regular);
    
}

.product-item-arrow-wrapper{
    display: flex;
    align-items: center;
}

.product-item-arrow-wrapper .arrow-icon{
    margin-right: -6px;
    opacity: 0;
    transition: 0.3s ease-out;
}

.product-item:hover .arrow-icon{
    margin-right: 10px;
    opacity: 100%;
}

.available-preview{
    display: flex;
    gap: 0.3rem;
}

.available-preview p{
    background-color: var(--clr-black);
    border-radius: 15px;
    width: 14px;
    height: 14px;
    font-size: 10px;
    text-align: center;
    color: var(--clr-off-white);
}

.prodcut-item-price{
    font-size: var(--fs-m);
    font-weight: var(--fw-bold);
}

.available-preview-wrapper{
    display: flex;
    flex-direction: column;
    justify-items: flex-end;
    align-items: flex-end;
}

.sold-out{
    font-size: 12px!important; 
    font-weight: var(--fw-regular);
    color: var(--clr-red);
    text-align: center;
}

.comming-soon{
    font-size: 12px !important; 
    color: var(--clr-grey);
    font-weight: var(--fw-regular);
    text-align: center;
}

.availability-wrapper{
    display: flex;
    flex-direction: row; 
    gap: 5px;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

.variant-headline{
    font-size: var(--fs-xs); 
    text-transform: none;
}





/*////////////// COLLECTION ////////////////////*/
.collection-title{
    display: flex; 
    gap: 1rem;
    align-items: center; 
}

.line{
    width: 1px;
    background-color: black;
    height: 20px;
}

.full-screen-img{
    width: 100%;
    height: 80vh;
    object-fit: cover;
    min-height: 500px;
    transition: 0.3s ease-in-out;
}

.loading-gif {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.scale-img{
    scale: 1.03;
}

.collection-items-wrapper{
    display: flex;
    flex-wrap: wrap;
}

.title_filter{
    padding: 80px 50px 0 50px;
    z-index: 9;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    width: 100%;
    z-index: 9;
}

.filter-text{
    display: flex;
    justify-content: center;
    align-items:center;
    gap: 0.5rem;
    font-weight: var(--fw-bold);
    font-size: var(--fs-s);
}

.filter-wrapper{
    display:flex;
    flex-direction: column;
    justify-content: center; 
    align-items: flex-end; 
    gap: 0.5rem;
}


/*////////////// PRODUCT PAGE ////////////////////*/



.sold-out-2{
    font-size: 50px;
    font-weight: var(--fw-bold);
    padding: 5rem 1rem; 
    color: var(--clr-red);
    background-image: url(//usium.de/cdn/shop/t/14/assets/usium_logo_small.svg?v=69487516972735164671731234271);
    background-size: 200px; 
    background-position: center;
    background-repeat: no-repeat;
    text-shadow: rgb(255,46,0,0.5) 0 0 10px;
}

.comming-soon-2{
    color: var(--clr-black);
    text-shadow: rgb(0,0,0,0.5) 0 0 10px;
}

.sold-out-wrapper{
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center; 
}

.insta-link{
    display: flex;
    justify-content: center;
    align-items: center;
}

.insta-name{
    font-weight: var(--fw-bold);
    font-size: var(--fs-s);
    text-transform: none;
}

.sold-out-item-1{
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    text-align: center;
}


.product-info .comming-soon {
    padding: 3px 0; 
    color: var(--clr-black);
    line-height: 90px;
    opacity: 30%;
}

.product-title-wrapper{
    display: flex; 
    flex-direction: column; 
    align-items: flex-start;
    gap: 1rem;
}

.product-title-wrapper h1{
    font-size: var(--fs-l);
}


.product-images{
    display: flex;
    flex-direction: column;
    width: 70%;
    gap: 3px;
}

.product-images img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.product-option{
    width: 100%;
}

/*  
.product-images{
    display: grid;
    grid-template-rows: 45vh 45vh 45vh 45vh 45vh;
    grid-template-columns: 1fr 1fr;
    width: 75%;
    gap: 1px;
}

.product-images img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.product-images img:nth-child(1){
    grid-column: 1/3;
    grid-row: 4/6;
}

.product-images img:nth-child(2){
    grid-column: 1/2;
    grid-row: 3/4;
}
    

.product-images img:nth-child(3){
    grid-column: 2/3;
    gird-row: 3/4;
}


.product-images img:nth-child(4){
    grid-column: 1/3;
    grid-row: 4/6;
}
*/
.product-page-wrapper {
    display: flex;
    align-items: flex-start;
}

.product-info{
    width: 30%;
    padding: 100px 2rem;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.button-wrapper{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
}

.product-page-selection form{
    display: grid;
    gap: 2rem;
}

.product-page-price{
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
}

fieldset{
    border: none;
    display: flex; 
    gap: 0;
}

legend{
    font-size: var(--fs-xs);
    text-transform: none;
    margin: 0.75rem 0;
}

.radio-wrapper{
    border: 1px solid var(--clr-black);
    transition: 0.3s ease-out;
    flex-grow: 1;
}

.radio-wrapper-sold-out{
    opacity: 20%;
}

.radio-wrapper:hover{
    background-color: var(--clr-light-grey);
}

.radio-wrapper label, .radio-wrapper-soldout label{
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.radio-wrapper-sold-out{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--clr-black);
    transition: 0.3s ease-out;
    position: relative;
    flex-grow: 1;
}

.sold-out-label{
    position: absolute;
    bottom: -15px;
    font-size: 9px;
}

.radio-wrapper input:focus + #size-label,
.radio-wrapper input:checked + #size-label{   
    color: var(--clr-off-white);
    background-color: var(--clr-blue);
    border: none;
}


.radio-wrapper input:checked{
    color: var(--clr-off-white);
    backgroun-color: var(--clr-blue);
}

.radio-wrapper input{
    display: none;
    transition: 0.3s ease-out;
}

.mwst{
    font-size: var(--fs-s);
    color: var(--clr-black);
    text-transform: none;
}

.product-images video {
    grid-row: 1/3;
    grid-column: 1/3;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-images video::-webkit-media-controls-panel{
}

.size-selector-wrapper{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

option{
    text-align: center;
}

.product-description ul li {
    font-size: var(--fs-xs);
    text-transform: none;
}

.product-description p{
    margin-bottom: 15px;
    font-size: var(--fs-s);
    font-weight: var(--fw-bold);
}

/*////////////// ADDED TO CART ////////////////////*/

.added-to-cart-wrapper{
    z-index: 100; 
    background-color: var(--clr-black);
    position: fixed;
    top: -100%;
    width: 100%;
    display: flex; 
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 20px 25px;
    transition: 1s;
}

.added-to-cart-items p{
    text-transform: none;
    font-size: var(--fs-s);
    color: var(--clr-off-white);
}


.add-to-cart-button-active{
    top: 0;
    transition: ;
}

.view-cart-button{
    position: absolute;
    right: 25px;
}




/*////////////// CUSTOMER LOGIN ////////////////////*/

#CustomerLoginForm form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

#CustomerLoginForm h1{
    font-size: var(--fs-l);
}


.customer-pages{
    padding: 0 1rem;
    min-height: 90vh;
}

.customer-pages label{
    font-size: var(--fs-xs);
}

.input-styling{
    display: flex; 
    flex-direction: column;
    background-color: transparent; 
    width: 100%;
}

.input-styling input{
    border:none;
    border-bottom: 1px solid var(--clr-black);
    border-radius: 0;
    height: 40px;
    background-color: transparent;
}

/* Fokus-Styling für eine bessere Benutzererfahrung */


.input-styling label{
    font-size: 10px; 
    font-weight: var(--fw-regular);
    text-transform: none;
}

.passwort-vergessen{
    font-size: var(--fs-xs);
}

/*////////////// CUSTOMER REGISTER ////////////////////*/

.register-page-wrapper{
    padding: 1rem;
}

.register-page-wrapper form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-header__title{
    font-size: var(--fs-l);
    text-align: center;
    margin-bottom: 1rem;
}


/*////////////// CUSTOMER ACCOUNT ////////////////////*/

.logout-button{
    display: flex;
    gap: 0.5rem;
    justify-items: center; 
    align-items: center;
    font-size: var(--fs-xs);
    opacity: 50%;
    font-weight: var(--fw-regular);
}

.logout-icon{
    width: 12px;
    height: auto;
}


.account-wrapper{
    padding: 
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    height: 100vh; 
}

.account-wrapper h1{
    text-align: center; 
    width: 100%; 
    padding: 0 25px;
    font-size: var(--fs-xl);
}

.account-data-wrapper{
    display: flex;
    gap: 10px;
    width: 100%;
    padding: 25px;
}

.account-data{
    display: flex;
    flex-direction: column;
    gap: 5px; 
    padding: 15px;
    width: 100%; 
}

.account-data h2, .account-data p{
    font-size: var(--fs-s);
    text-transform: none;
}

.account-data p{
    color: var(--clr-grey);
}

.account-links-wrapper{

}

.account-links{
    display: flex;
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid var(--clr-grey);
    padding: 10px;
    font-weight: var(--fw-bold);
}

.account-links:last-child{
    border-bottom: 1px solid var(--clr-grey);
}

.account-links div{
    display: flex;
    align-items: center;
    gap: 1rem;
}





/*////////////// CUSTOMER ADRESSES ////////////////////*/

.customer-button{
    color: var(--clr-black);
    font-weight: var(--fw-bold);
    font-size: var(--fs-s);
    transition: 0.3s ease-in-out;
}

.customer-button:hover{
    opacity: 50%;
}

.adresses-page{
    display: flex;
    flex-direction: column;
    gap: 5rem;
    justify-content: flex-start;
    align-items: center; 
    padding: 20px;
    min-height: 80dvh;
}

.inputs{
    display: flex; 
    flex-direction: column;
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
}

.adresses-item{
    display: flex; 
    flex-direction: column;
    background-color: var(--clr-light-grey);
    width: 100%;
}

.adresses-item p{
    font-size: var(--fs-m);
    text-transform: none;
    color: var(--clr-grey);
}

.adresses-wrapper{
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.adresses{
    display: flex;
    flex-direction:column;
}

.adresses-gap{
    display: flex;
    gap: 20px;
    flex-direction: column;
    width: 100%;
}


.buttons-small-wrapper{
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.add-addresses-form{
    position: fixed; 
    right:-100%;
    background-color: var(--clr-off-white);
    height: calc(100dvh - 58px);
    width: 100%;
    padding: 15px 25px;
    z-index: 100;
    transition: 0.3s ease-in-out;
    bottom: 0;
    overflow: scroll;
}

.add-addresses-form::-webkit-scrollbar{
    display: none;
}

.add-addresses-form form, .edit-addresses-form form{
    display: flex; 
    flex-direction: column;
    gap: 2rem;
}

.add-adresses-button-wrapper{
    display: flex; 
    justify-content: space-between;
}

.test-styling{
    right: 0;
}


.add-addresses-form label, .edit-addresses-form label{
    font-size: 10px; 
    font-weight: var(--fw-regular);
    text-transform: none;

}

.add-addresses-form input, .edit-addresses-form input{
    border:none;
    border-bottom: 1px solid var(--clr-black);
    border-radius: 0;
    height: 40px;
    background-color: transparent;
}

.edit-addresses-form{
    display: none;
    padding: 20px;
    border: 1px solid var(--clr-grey);
    border-top: none;
    border-radius: 0 0 10px 10px;
}

.edit-active{
    display: block;
}

.form-output{
    padding: 20px; 
    display: flex; 
    flex-direction: column; 
    gap: 1.5rem;
    border: 1px solid var(--clr-grey);
    border-top: none;
    border-radius: 0 0 10px 10px;
}

.invisible{
    display: none;
}

.address-checkbox{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.address-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border: 1px solid var(--clr-grey);
    padding: 10px;
    gap: 10px;
    min-height: 60px;
    border-radius: 10px 10px 0 0;
}

.address-header h3{
    font-size: var(--fs-m);
    text-overflow: ellipsis;
    overflow: hidden;
    text-transform: none;
}

.standartaddress{
    text-transform: none;
    padding: 5px 10px;
    font-size: 10px;
    border-radius: 50px;
    display: flex;
    gap: 5px; 
    justify-content: center;
    align-items: center;
    background-color: var(--clr-green);
}

.standartaddress h4{
    font-size: 10px;
    font-weight: var(--fw-regular);
}

/*///////////////// CUSTOMER ORDERS ORDER HISTORY /////////////////*/

.order-history-wrapper{
    padding: 15px;
    display: flex; 
    flex-direction: column;
    gap: 15px;
}

.order-history-product-wrapper{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.oder-history-infos-header{
    padding: 10px;
    border: 1px solid var(--clr-grey);
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.oder-history-infos-header h3{
    text-transform: none;
    font-size: var(--fs-s);
    font-weight: var(--fw-regular);
}

.order-number{
    display: flex;
    flex-direction: column;
}

.fulfillment-status{
    text-transform: none;
    padding: 5px 10px;
    font-size: 10px;
    border-radius: 50px;
    display: flex;
    gap: 5px; 
    justify-content: center;
    align-items: center;
}

.unfulfilled{
    background-color: var(--clr-grey);
    color: var(--clr-off-white);
}

.fulfilled{
    background-color: var(--clr-green)
    color: var(--clr-off-white);
}

.shipped{
    background-color: #E6E6E6;
    color: var(--clr-black);
}

.quick-details-wrapper{
    background-color: var(--clr-light-grey);
    padding: 20px;
    display: flex;
    flex-direction:column;
    gap: 10px;
    border: 1px solid var(--clr-grey);
    border-top: none;
    border-radius: 0 0 10px 10px;

}

.quick-details{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    
}   

.quick-details-wrapper p{
    text-transform: none;
    font-size: var(--fs-s);
    color: var(--clr-grey);
}

.order-history-image{
    max-width: 100px;
    height: 200px;
    object-fit: cover;
}

.order-history-product{
    display: flex;
    flex-direction: column;
    position: relative;
}

.order-line-items{
    display: flex;
    padding: 10px 0;
    overflow-x: scroll;
    gap: 15px;
}

.quantity-order-history{
    position: absolute;
    background-color: var(--clr-grey);
    color: var(--clr-off-white);
    padding: 5px;
    font-size: var(--fs-s);
}

.quantity-order-history p{
    color: var(--clr-off-white);
}

.order-history-buttons{
    display: flex;
    justify-content: space-between;
}

.order-details-final-price{
    padding: 15px 0;
    border-top: 1px solid var(--clr-grey);
}

.order-details-final-price div{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-details-final-price h6{
    font-size: var(--fs-l);
    text-transform: none;
}

.order-details-final-price h5{
    font-size: var(--fs-l);
}
/*///// ORDER DETAILS ////////*/


.order-details-page{
    padding: 20px;
}

.order-details-wrapper{
    display: flex; 
    gap: 1rem;
    flex-wrap: wrap;
}

.order-details-wrapper .columns{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.order-details-products{
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.order-history-line-items-wrapper{
    display: flex; 
    flex-direction: column;
    gap: 3px;
}

.order-details-line-item{
    display: flex;
    gap: 1rem;
    align-items: center;
}

.order-details-items{
    display: flex; 
    flex-direction: column; 
    gap: 5px;
    align-items: start;
}

.order-details-items h3 .order-details-products h3{
    font-size: var(--fs-s);
}

.order-details-items p{
    font-size: var(--fs-s);
    text-transform: none;
}
.order-details-line-item{
    position: relative;
    padding-left: 1rem;
    border: 1px solid var(--clr-grey);
    background-color: var(--clr-light-grey);
}

.order-details-line-item h5{
    font-size: var(--fs-m);
}

.order-details-line-item h6{
    text-transform: none;
    font-weight: var(--fw-regular);
    font-size: var(--fs-s);

}

.order-details-line-item .detail-text {
    display: flex;
    flex-direction: column; 
    gap: 0.5rem;
}

.order-details-line-item .quantity-order-history{
    position: absolute;
    top: 0;
    left: 0;
}








/*///////////////// WARENKORB CART /////////////////*/

.cart-wrapper{
    padding-top: 60px;
}

.cart-wrapper h1{
    padding: 20px 50px;
}

.form-wrapper{
    display:flex;
    justify-content: center;
    align-items:center;
}

.cart-wrapper form{
    display: flex; 
    flex-direction: column;
    padding: 0 25px;
    width: 80%; 
}

.cart-empty{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
    padding: 10vh 0 25vh 0;
}

.cart-empty img{
    width: 22px;
    height: auto;
}

.cart-empty h6{
    font-weight: var(--fw-bold);
    font-size: var(--fs-m)
}

.tabel-label{
    display: none;
    justify-content: space-between;
    color: var(--clr-grey);
}

.cart-item-title{
    font-size: var(--fs-s) !important;
}


.cart-item{
    display: flex;
    gap: 1rem;
    position: relative;
    justify-content: space-between;
    align-items: strech;
    padding: 1rem 0;
    border-bottom: solid 1px var(--clr-light-grey);
    width: 100%;
    z-index:0;
}

.cart-item:nth-child(2){
    border-top: solid 1px var(--clr-light-grey);
}

.remove-item{
    position: absolute;
    top:0;
    right: 0;
    padding: 15px;

}

.title-img{
    display: flex;
    gap: 1rem;
    align-items: center;
}

.title-img h3{
    font-size: var(--fs-s);
    font-weight: var(--fw-regular);
    text-transform: none;
}

.title-img h2{
    font-size: var(--fs-m);
    font-weight: var(--fw-bold);
}

.title-img img{
    border-radius: 15px;
    height: 200px;
    width: 150px;
    object-fit: cover;
}

.cart-prices{
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 1rem;
    font-weight: var(--fw-regular);
    padding: 10px;
}

.cart-prices p:nth-child(1){
    font-size:var(--fs-xs);
    color: var(--clr-grey);
}

.cart-item .quantity-selector{
    flex-direction: column;
    height: auto;
    justify-content: space-between;
    align-items: center;
    width: 60px;
    background-color: var(--clr-off-white);
}

.quantity-selector input {
    width:100%;
    border: none;
    background-color: transparent;
    text-align: center;
    font-size: var(--fs-m);
}


.plus, .minus{
    min-height: 22px;
    padding: 1rem 0;
    width: 100%;
    transition: 0.3s ease-out;
}

.plus:hover, .minus:hover{
    opacity: 30%;
}

.quantity-img{
    display: flex;
    gap:8px;
}

.cart-items-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
    max-height:70vh;
}


.cart-item .button-small p:nth-child(2){
    color: var(--clr-red);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
}

.cart-item .button-small p:nth-child(1){
    font-size: var(--fs-xs);
}

.cart-footer{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}


.zwischensumme{
    display: flex;
    gap: 1rem;
    align-items: center;
}

.zwischensumme p{
    font-size: var(--fs-m);
    font-weight: var(--fw-bold);
    text-transform: none;
}

.zwischensumme p:nth-child(2){
    font-weight: var(--fw-regular);
    font-size: var(--fs-l);
}

.tax-wrapper{
    display: flex; 
    flex-direction: column; 
    gap: 0.1rem;
    align-items: start;
    padding: 10px 15px;
}

.tax{
    font-size: var(--fs-xs);
    text-transform: none;
    color: var(--clr-grey);
}


.zwischensumme-wrapper{
    display:flex;
    flex-direction:row;
    justify-content: space-between;
    width: 100%;
}


#update-button, #update-button button{
    color: var(--clr-red) !important;
}

#update-button{
    display: none;
}

.cart-buttons{
    display: flex; 
    gap: 2rem;
}

/*////////////// PASSWORD ////////////////////*/

.password-page{
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    background-image: url("//usium.de/cdn/shop/t/14/assets/password-bg.jpg?v=177458058922102257011731234271");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    gap: 2rem;
    color: var(--clr-off-white);
}

.input-label-1{
    display: flex;
    flex-direction: column;
}

.label-1{
    font-size: var(--fs-xs);
    text-transform: none;
}

.input-label-1 input{
    border: none;
    background-color: transparent; 
    border-bottom: 1px solid var(--clr-black);
}

.password-page form{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.errors{
    color: var(--clr-red);
}


/*////////////// FOOTER ////////////////////*/

.footer{
    background-color: black; 
    color: var(--clr-off-white);
    padding: 100px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgb(0,0,0,0.1);
    flex-wrap: wrap;
}

.footer-text-wrapper{
    display: flex;
    gap: 100px;
    flex-wrap: wrap;
}

.footer-text h6{
    font-size: var(--fs-m);
    margin-bottom: 20px;
}

.footer-text div ul li a, .footer-text div ul li div a{
    font-size: var(--fs-s);
    text-transform: none;
    opacity: 75%;
    transition: 0.3s ease-out;
}

.footer-text div ul li a:hover, .footer-text div ul li div a:hover{
    opacity: 100%;
}

.footer-text div ul li div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.copyright-wrapper{
    display: flex;
    align-items: center;
    font-size: var(--fs-m);
    font-weight: var(--fw-bold);
    margin: 30px 0;
}








.margin-top{
    margin-top: 100px;
}



/*////////////// MEDIA QUERYS  ////////////////////*/

@media only screen and (max-width: 1300px){

    .collection-items-wrapper{
        flex-direction: column;
    }

    .product-item-wrapper{
        width: 100%;
    }



    .product-info{
        width: 50%;
    }

   

    .cart-wrapper form{
        width: 100%;
    }
}

@media only screen and (max-width: 795px){

    .product-page-wrapper{
        flex-direction: column;
    }
    
    .product-images{
        display: flex;
        width: auto;
        flex-direction: row;
        overflow: auto;
    }

    .product-images img, .product-images video{
        height: 70vh;
    }

    .product-info{
        width: 100%;
        padding: 2rem 25px;
    }

    .added-to-cart-items{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; 
        gap: 1rem;
    }

    .added-to-cart-wrapper{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .added-to-cart-items p{
        font-size: var(--fs-s);
    }

    .view-cart-button{
        position: static;
    }

    .product-page-selection form{
        display: flex;
        flex-direction: column;
        justify-content: center; 
        align-items: center;
    }

    fieldset legend{
        width: 100%;
        text-align: center;
    }

    .button-wrapper{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer-text-wrapper{
        gap: 50px;
    }
    
   
}

@media only screen and (max-width: 909px) {

    header{
        padding: 1rem 25px;
        background-color: var(--clr-off-white);
    }

    .item-count{
        right: 27px;  
    }

    .nav-links{
        display: none;
    }

    .mobile-nav-links li{
        padding: 1rem 0;
    }

    .burgermenu{
        display: flex;
    }

    .header-icons-wrapper a:nth-child(1){
        display: none;
    }

    .logo{
        width: 150px;
    }

    .cart-wrapper{
        padding-top: 0px;
    }

    /* product item */

    .product-label h3{
        font-size: var(--fs-xs);
    }

    .product-label-item{
        padding: 15px 20px;
    }

    .title_filter{
        padding: 20px 25px;
        border-top: 1px solid rgb(0,0,0,0.3);
        border-bottom: 1px solid rgb(0,0,0,0.3);
        background-color: var(--clr-off-white);
    }

    .title_filter h1{
        font-size: var(--fs-m);
    }

    .full-screen-img{
        height: 50vh;
        min-height: 300px; 
    }

    /* product page */

    .product-title-wrapper{
        flex-direction: row;
        justify-content: space-between;
    }

    .product-title-wrapper div{
        display: flex;
        flex-direction: column;
        align-items: end;
    }

    .product-title-wrapper h1, .product-page-price{
        font-size: var(--fs-l);
    }



     /* cart */

     .cart-wrapper h1{
        font-size: var(--fs-m);
        padding: 20px 25px;
        border-top: 1px solid rgb(0,0,0,0.3);
        border-bottom: 1px solid rgb(0,0,0,0.3);
        position: sticky;
    }

    .cart-items-wrapper{
        overflow: auto;
        max-height:70vh;
    }

    .cart-item{
        background-color:rgb(0,0,0,0.03);
        border: 1px solid rgb(0,0,0,0.1);
        padding: 0;
    }

    .title-img img{
        width: 100px;
        min-height: 200px;
    }

    .cart-prices{
        padding: 15px;
    }

    .cart-wrapper .form-wrapper{
        height: 79vh;
        align-items: flex-start;
        position: relative;
    }

    .cart-wrapper .form-wrapper form{
        padding: 0;
    }

    .cart-footer{
        border: 1px solid rgb(0,0,0,0.1);
        position: absolute;
        bottom: 0;
        background-color: var(--clr-off-white);
        box-shadow:0px -15px 45px 2px rgba(0,0,0,0.15);
    }

    .tax-wrapper{
        justify-content: center;
    }
    
    .zwischensumme-wrapper{
        justify-content; center;
    }


    /* password */

    .password-page{

        background-image: url("//usium.de/cdn/shop/t/14/assets/clo3d-texture-test-3-1.jpg?v=13176639814311269551731234271");
    }

  }