/*
------------------------------------------------------------
Projekt: Inke Hagen – MonsterBar
Datei: inke-hagen-monsterbar.css

Version: 0.4.10
Stand: 2026-08-13

Entwicklung:
arsvenditio
------------------------------------------------------------
*/


/* =========================================================
   LOKALE SCHRIFTEN
========================================================= */

@font-face {
    font-family: "PTSans-Narrow";
    src:
        url("../../assets/fonts/PTSans-Narrow/PTSansNarrow-Regular.woff2") format("woff2"),
        url("../../assets/fonts/PTSans-Narrow/PTSansNarrow-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: "Rubik Dirt";
    src:
        url("../../assets/fonts/RubikDirt-Regular/RubikDirt-Regular.woff2") format("woff2"),
        url("../../assets/fonts/RubikDirt-Regular/RubikDirt-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "PTSans-NarrowBold";
    src:
        url("../../assets/fonts/PTSans-NarrowBold/PTSansNarrow-Bold.woff2") format("woff2"),
        url("../../assets/fonts/PTSans-NarrowBold/PTSansNarrow-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* =========================================================
   GRUNDLAYOUT
========================================================= */

#monsterShop{
    width:100%;
    margin:0;
    padding:0;
}




/* =========================================================
   STUFE 1 – PRODUKTFILTER
========================================================= */

.monsterProduktFilter{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    width:100%;
    margin:-14px 0 28px;
}

.monsterProduktFilter:empty{
    display:none;
}

.monsterProduktFilterButton{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:150px;
    padding:8px 18px;

    background:var(--ih-red, #CF0E12);
    color:#ffffff;
    border:2px solid var(--ih-red, #CF0E12);
    border-radius:0;

    font-family:"PTSans-NarrowBold", "Arial Narrow", Arial, sans-serif !important;
    font-weight:700 !important;
    font-size:1.08rem;
    line-height:1.1;
    text-align:center;
    text-transform:uppercase;

    cursor:pointer;

    transition:
        background-color .2s ease,
        color .2s ease,
        border-color .2s ease;
}

/*
 * Aktiver Zustand auf allen Geräten.
 * Hover nur bei Geräten mit echtem Hover und präzisem Zeiger,
 * damit Touch-Geräte nach dem Antippen nicht schwarz hängen bleiben.
 */
.monsterProduktFilterButton:focus-visible,
.monsterProduktFilterButton[aria-pressed="true"]{
    background:#000000;
    color:#ffffff;
    border-color:#000000;
}

@media (hover:hover) and (pointer:fine){

    .monsterProduktFilterButton:hover{
        background:#000000;
        color:#ffffff;
        border-color:#000000;
    }

}

.monsterProduktFilterButton:focus-visible{
    outline:2px solid #000000;
    outline-offset:2px;
}


/* =========================================================
   STUFE 1 – MONSTERGALERIE
========================================================= */

#monsterBar{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
    width:100%;
}

.monsterBarKachel{
    position:relative;
    overflow:hidden;

    background:#ffffff;
    border:1px solid #d8d8d8;

    cursor:pointer;

    transition:
        border-color .25s ease,
        transform .25s ease;
}

.monsterBarKachel:hover{
    border-color:#CF0E12;
}

.monsterBarBildWrap{
    position:relative;
    overflow:hidden;
    width:100%;
}

.monsterBarBildWrap img{
    display:block;
    width:100%;
    aspect-ratio:1 / 1;
    object-fit:cover;

    transition:transform .35s ease;
}

.monsterBarKachel:hover .monsterBarBildWrap img{
    transform:scale(1.04);
}


/* =========================================================
   RIBBON
========================================================= */

.monsterBarRibbon{
    position:absolute;

    top:10px;
    right:-1px;

    z-index:10;

    display:flex;
    align-items:center;
    justify-content:center;

    width:clamp(88px,34%,145px);
    aspect-ratio:600 / 160;

    overflow:hidden;
    pointer-events:none;
}

.monsterBarRibbonBild{
    position:absolute;
    inset:0;

    display:block;
    width:100%;
    height:100%;
    object-fit:fill;
}

.monsterBarRibbonText{
    position:relative;
    z-index:1;

    display:block;
    max-width:92%;
    padding:0 6px;

    color:#ffffff;

    font-family:"PTSans-NarrowBold", "Arial Narrow", Arial, sans-serif !important;
    font-weight:700 !important;
    font-size:clamp(11px,1.25vw,15px);
    line-height:1;
    letter-spacing:.5px;
    text-align:center;
    text-transform:uppercase;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

/* Schwarze Schrift laut Ribbon-Standard */
.monsterBarRibbon--birthday .monsterBarRibbonText,
.monsterBarRibbon--sale .monsterBarRibbonText{
    color:#000000;
}

/* Weiße Schrift mit schwarzer Kontur */
.monsterBarRibbon--pride .monsterBarRibbonText{
    color:#ffffff;
    -webkit-text-stroke:1px #000000;
    paint-order:stroke fill;
    text-shadow:
        0 0 1px #000000,
        1px 1px 0 #000000,
        -1px -1px 0 #000000;
}


/* =========================================================
   STUFE 2 – DETAILANSICHT
========================================================= */

.monsterDetail{
    margin-top:50px;
    padding-top:36px;

    border-top:2px solid #CF0E12;
}

.monsterDetailGrid{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    gap:42px;
    align-items:start;
}


/* =========================================================
   MONSTERBILD
========================================================= */

.monsterDetailBildWrap{
    overflow:hidden;

    background:#ffffff;
    border:1px solid #d8d8d8;
}

.monsterDetailBildWrap img{
    display:block;
    width:100%;
    height:auto;
}


/* =========================================================
   MONSTERDETAIL – TEXTE
========================================================= */

.monsterDetailText{
    min-width:0;
    text-align:center;
}

.monsterDetailText h2{
    margin:0;

    color:#000000;

    font-family:"PTSans-NarrowBold", "Arial Narrow", Arial, sans-serif !important;
    font-weight:normal !important;
    font-size:1.55rem;
    line-height:1.05;
    text-align:center;
}

.monsterDetailText p{
    margin:4px 0 2px 0;

    color:#777777;

    font-family:"PTSans-Narrow", "Arial Narrow", Arial, sans-serif !important;
    font-weight:normal !important;
    font-size:1.25rem;
    line-height:1.2;
    text-align:center;
}

.monsterDetailText h3{
    margin:12px 0 14px 0;

    color:#777777;

    font-family:"PTSans-NarrowBold", "Arial Narrow", Arial, sans-serif !important;
    font-weight:normal !important;
    font-size:1.55rem;
    line-height:1.05;
    text-align:center;
}

/* =========================================================
   PRODUKTBUTTONS
========================================================= */

.monsterProduktButtons{
    display:flex;
    flex-direction:column;
    gap:12px;

    width:100%;
    margin:0;
}

.monsterProduktButton{
    display:block;
    width:100%;

    padding:8px 20px;

    background:#ffffff;
    color:#000000 !important;

    border:2px solid #000000;
    border-radius:0;

    font-family:"PTSans-NarrowBold", "Arial Narrow", Arial, sans-serif !important;
    font-weight:normal !important;
    font-size:1.25rem;
    line-height:1.15;
    text-align:center;
    text-transform:uppercase;

    cursor:pointer;

    transition:
        background-color .25s ease,
        color .25s ease,
        border-color .25s ease;
}

.monsterProduktButton:hover,
.monsterProduktButton:focus{
    background:#000000;
    color:#ffffff !important;
    border-color:#000000;
}


/* =========================================================
   ORIGINAL-QUERVERWEIS
   Gestaltung global aus assets/css/context-actions.css.
========================================================= */

.monsterOriginalLink{
    margin-top:12px;
    text-decoration:none !important;
}

.monsterOriginalLink:hover,
.monsterOriginalLink:focus-visible{
    text-decoration:none !important;
}

/* =========================================================
   PRODUKTKATEGORIEN
========================================================= */

.monsterProduktKategorie{
    width:100%;
}

.monsterKategorieButton{
    justify-content:flex-start;
    gap:12px;
    text-align:left;
    text-transform:none;
}

.monsterKategorieButton[aria-expanded="true"]{
    background:#000000;
    color:#ffffff !important;
    border-color:#000000;
}

.monsterKategoriePfeil{
    flex:0 0 auto;

    width:18px;
    height:18px;

    background-image:url("../../assets/svg/dropdownPfeil_rt.svg");
    background-repeat:no-repeat;
    background-position:center;
    background-size:contain;

    transform:rotate(0deg);

    transition:
        transform .2s ease;
}

.monsterKategorieButton:hover .monsterKategoriePfeil,
.monsterKategorieButton:focus .monsterKategoriePfeil,
.monsterKategorieButton[aria-expanded="true"] .monsterKategoriePfeil{
    background-image:url("../../assets/svg/dropdownPfeil_ws.svg");
}

.monsterKategorieButton[aria-expanded="true"] .monsterKategoriePfeil{
    transform:rotate(90deg);
}

.monsterKategorieText{
    flex:1;
    text-align:left;
}

.monsterKategorieInhalt{
    display:flex;
    flex-direction:column;
    gap:8px;

    padding:10px 0 4px;
}

.monsterKategorieInhalt[hidden]{
    display:none !important;
}

/*
 * Produktbuttons innerhalb einer Kategorie
 */

.monsterKategorieInhalt .monsterProduktButton{
    padding:7px 18px;

    font-size:1.1rem;
}

.monsterKeineProdukte,
.monsterFehlermeldung{
    margin:0;

    color:#777777;

    font-family:"PTSans-Narrow", "Arial Narrow", Arial, sans-serif !important;
    font-size:1.15rem;
    line-height:1.35;
    text-align:center;
}

/* =========================================================
   ZURÜCK ZUR MONSTERBAR
   Gestaltung kommt global aus assets/css/buttons.css.
========================================================= */

.monsterZurueck{
    margin-top:10px;
}

/* =========================================================
   BUTTON – ZUR EINGANGSHALLE
========================================================= */

.monsterNavigation{
    margin:24px 0 32px;
    text-align:center;
}

.monsterZurEingangshalle{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:auto;
    min-width:320px;
    max-width:100%;

    padding:10px 40px;

    text-decoration:none !important;
}

.monsterZurEingangshalle:hover,
.monsterZurEingangshalle:focus{
    text-decoration:none !important;
}

/* =========================================================
   RESPONSIVE – GROSSE MONITORE
========================================================= */

@media (min-width:1600px){

    #monsterBar{
        grid-template-columns:repeat(5,minmax(0,1fr));
        gap:20px;
    }

}


/* =========================================================
   RESPONSIVE – TABLET / KLEINER LAPTOP
========================================================= */

@media (min-width:768px) and (max-width:1100px){

    #monsterBar{
        grid-template-columns:repeat(3,minmax(0,1fr));
        gap:16px;
    }

    .monsterDetailGrid{
        gap:30px;
    }

}


/* =========================================================
   RESPONSIVE – HANDY HOCHKANT
========================================================= */

@media (max-width:767px){

    .monsterProduktFilter{
    gap:8px;
    margin:-18px 0 24px;
    }

    .monsterProduktFilterButton{

    flex:1 1 calc(33.333% - 8px);

    min-width:0;

    padding:8px 5px;

    font-size:.9rem;

    }

    #monsterBar{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
    }

    .monsterDetail{
        margin-top:40px;
        padding-top:28px;
    }

    .monsterDetailGrid{
        grid-template-columns:1fr;
        gap:22px;
    }

    .monsterDetailText h2{
        margin-bottom:0px;
        font-size:1.45rem;
    }

    .monsterDetailText p{
        margin:4px 0 2px 0;
        font-size:1.1rem;
        line-height:1.2;
    }

    .monsterDetailText h3{
        margin:4px 0 12px 0;
        font-size:1.4rem;
    }

    .monsterProduktButtons{
        max-width:none;
    }

    .monsterZurueck{
        margin-top:10px;
    }

}


/* =========================================================
   RESPONSIVE – HANDY QUERFORMAT
========================================================= */

@media (max-height:500px) and (orientation:landscape){

    #monsterBar{
        grid-template-columns:repeat(3,minmax(0,1fr));
        gap:12px;
    }

}
/* =========================================================
   SEITENRAHMEN · STANDALONE-ENTWICKLUNG
========================================================= */

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    background: #ffffff;
    color: #000000;
}

#monsterShop {
    max-width: 1320px;
    margin: 0 auto;
    padding: 24px 24px 56px;
}

@media (max-width: 767px) {
    #monsterShop {
        padding: 24px 16px 40px;
    }
}


.seitenTitel {
    margin: 0 0 10px;

    color: var(--ih-red, #CF0E12);

    font-family: "Rubik Dirt", cursive;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 0.9;
    text-align: center;
}

.ars-seitenUntertitel {
    margin: 0 0 36px;
    color: var(--ars-color-grey, #666666);
    font-family: var(--ars-font-body, "PTSans-Narrow", "Arial Narrow", Arial, sans-serif);
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
}

/* =========================================================
   GLOBALE INHALTSTRENNLINIE
========================================================= */

.sectionDivider{
    width:100%;
    height:1px;
    background:#bdbdbd;
}

/* =========================================================
   MONSTERCHARAKTER · STUFE 2
========================================================= */

.monsterCharakter{
    margin:22px 0 24px;
}

.monsterCharakter[hidden]{
    display:none !important;
}

.monsterDetailText .monsterCharakterTitel{
    display:flex;
    align-items:center;
    gap:12px;

    margin:0 0 14px;

    color:#000000;

    font-family:"PTSans-NarrowBold", "Arial Narrow", Arial, sans-serif !important;
    font-size:1.65rem;
    font-weight:normal !important;
    line-height:1;
    text-align:center;
}

.monsterCharakterTitel::before,
.monsterCharakterTitel::after{
    content:"";
    flex:1 1 auto;
    height:1px;
    background:#bdbdbd;
}

.monsterCharakterLevel{
    display:flex;
    flex-direction:column;
    gap:7px;
    width:min(100%, 420px);
    margin:0;
}

.monsterCharakterZeile{
    display:grid;
    grid-template-columns:190px auto;
    align-items:center;
    column-gap:12px;
}

.monsterCharakterLabel{
    color:#000000;
    font-family:"PTSans-NarrowBold", "Arial Narrow", Arial, sans-serif !important;
    font-size:1.3rem;
    font-weight:normal !important;
    line-height:1.05;
    text-align:left;
}

.monsterCharakterSterne{
    display:inline-flex;
    justify-content:flex-start;
    gap:.12em;
    min-width:0;

    font-size:1.65rem;
    line-height:1;
    white-space:nowrap;
}

.monsterCharakterStern--aktiv{
    color:var(--ih-red, #CF0E12);
}

.monsterCharakterStern--inaktiv{
    color:#c8c8c8;
}

.monsterCharakterDivider{
    margin:22px 0 0;
}

@media (max-width:767px){
    .monsterCharakter{
        margin:18px 0 20px;
    }

    .monsterDetailText .monsterCharakterTitel{
        font-size:1.45rem;
    }

    .monsterCharakterLevel{
        gap:6px;
    }

    .monsterCharakterZeile{
        column-gap:12px;
    }

    .monsterCharakterLabel{
        font-size:1.18rem;
    }

    .monsterCharakterSterne{
        min-width:0;
        font-size:1.5rem;
    }

    .monsterCharakterDivider{
        margin-top:18px;
    }
}

