/* ========================================
   DÖRR KREATIVWERK & SCHREIBERLINGS
   SHOP – ORGANIGRAMM
   ======================================== */


/* ========================================
   SHOP-HAUPTBEREICH
   ======================================== */

.shop-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 30px 90px;
}


/* ========================================
   SHOP-EINLEITUNG
   ======================================== */

.shop-intro {
    text-align: center;
    margin-bottom: 65px;
}

.shop-intro h2 {
    font-size: 36px;
    color: #1d2633;
    margin-bottom: 18px;
}

.shop-intro p {
    font-size: 18px;
    max-width: 750px;
    margin: 6px auto;
}


/* ========================================
   PRODUKT-ORGANIGRAMM
   ======================================== */

.product-organigram {
    position: relative;
    text-align: center;
}


/* ========================================
   ZENTRALER KNOTEN
   ======================================== */

.product-main-node {
    width: 320px;
    margin: 0 auto;
}


/* ========================================
   PRODUKT-KNOTEN
   ======================================== */

.product-node {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    min-height: 150px;

    padding: 25px 30px;

    background-color: #ffffff;

    border: 1px solid #b8b3a7;

    color: #1d2633;

    text-decoration: none;

    transition:
        border-color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}


/* ========================================
   NUR ANKLICKBAR PRODUKTBEREICHE
   ======================================== */

.product-node:not(.product-main-node):hover {
    border-color: #d6c7a1;

    background-color: #faf8f3;

    transform: translateY(-3px);
}


/* ========================================
   ZENTRALER KNOTEN – DESIGN
   ======================================== */

.product-main-node {
    background-color: #1d2633;

    border-color: #1d2633;

    color: #ffffff;

    cursor: default;
}


/*
   Kein Hover-Effekt für
   "Meine Produkte"
*/


/* ========================================
   TEXT IN DEN KNOTEN
   ======================================== */

.node-title {
    font-size: 21px;

    font-weight: bold;

    margin-bottom: 8px;
}

.product-main-node .node-title {
    font-size: 24px;
}

.node-description {
    font-size: 14px;

    color: #666666;

    line-height: 1.5;
}

.product-main-node .node-description {
    color: #d6c7a1;
}

.node-icon {
    font-size: 27px;

    margin-bottom: 10px;
}


/* ========================================
   VERTIKALE VERBINDUNG
   ======================================== */

.vertical-line {
    width: 2px;

    height: 55px;

    margin: 0 auto;

    background-color: #b8b3a7;
}


/* ========================================
   PRODUKT-ZWEIGE
   ======================================== */

.product-branches {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 35px;

    max-width: 1000px;

    margin: 0 auto;
}


/* ========================================
   HORIZONTALE VERBINDUNG
   ======================================== */

.product-branches::before {
    content: "";

    position: absolute;

    top: 0;

    left: calc(16.666% + 17px);

    right: calc(16.666% + 17px);

    height: 2px;

    background-color: #b8b3a7;
}


/* ========================================
   EINZELNER ZWEIG
   ======================================== */

.product-branch {
    position: relative;

    padding-top: 35px;
}


/* ========================================
   VERBINDUNG ZUM EINZELNEN PRODUKT
   ======================================== */

.branch-line {
    position: absolute;

    top: 0;

    left: 50%;

    width: 2px;

    height: 35px;

    transform: translateX(-50%);

    background-color: #b8b3a7;
}


/* ========================================
   MOBILE DARSTELLUNG
   ======================================== */

@media (max-width: 800px) {

    .shop-main {
        padding: 50px 20px 70px;
    }


    .shop-intro h2 {
        font-size: 30px;
    }


    .shop-intro p {
        font-size: 17px;
    }


    .product-branches {
        grid-template-columns: 1fr;

        max-width: 500px;

        gap: 20px;
    }


    .product-branches::before {
        display: none;
    }


    .product-branch {
        padding-top: 0;
    }


    .branch-line {
        display: none;
    }


    .product-node {
        min-height: 130px;
    }


    .product-main-node {
        width: 100%;

        max-width: 320px;
    }


    .vertical-line {
        height: 35px;
    }

}