body {
    color: maroon;
    font-size: 13px;
    font-family: "Trebuchet MS", verdana, Geneva, Arial, Helvetica, SunSans-Regular, sans-serif;
}

p {}

td {}

a:link {
    color: #4a3810;
    font-size: 12px;
    font-family: "Trebuchet MS", Geneva, Arial, Helvetica, SunSans-Regular, sans-serif, "Trebuchet MS", Geneva, Arial, Helvetica, SunSans-Regular, sans-serif;
    font-weight: 700;
    text-decoration: underline;
}

a:visited {
    color: #4a3510;
    font-size: 12px;
    font-family: "Trebuchet MS", Geneva, Arial, Helvetica, SunSans-Regular, sans-serif, "Trebuchet MS", Geneva, Arial, Helvetica, SunSans-Regular, sans-serif;
    font-weight: 700;
    text-decoration: underline;
}

a:hover {
    color: #820000;
    font-size: 12px;
    font-family: "Trebuchet MS", Geneva, Arial, Helvetica, SunSans-Regular, sans-serif, "Trebuchet MS", Geneva, Arial, Helvetica, SunSans-Regular, sans-serif;
    font-weight: normal;
    background-color: #c0cab2;
    text-decoration: underline;
}

a:active {
    color: #ffffcd;
    font-size: 12px;
    font-family: "Trebuchet MS", Geneva, Arial, Helvetica, SunSans-Regular, sans-serif, "Trebuchet MS", Geneva, Arial, Helvetica, SunSans-Regular, sans-serif;
    font-weight: normal;
    text-decoration: underline;
}

.em_rot {
    color: #f00;
}

.rahmen {
    padding: 2px;
    border: solid 1px maroon;
}

.h3 {
    font-weight: 600;
}

.h1 {
    font-size: 13px;
    font-weight: bold;
}

.klein {
    font-size: 10px;
    line-height: 14px;
}

.fett {
    font-weight: 700;
}

.rahmen-gelb {
    margin-right: 10px;
    padding: 3px;
    border: groove 1px #ffffcd;
}

.rahmen-gelb-ohne-abstand {
    padding: 2px;
    border: groove 1px #b2c36f;
}

/* zuletzt eingefügt */
.navboxcont_38F0CF1 {
    background-color: #c0cab2;
    width: 100%;
    height: 200px;
    margin-top: 30px;
    padding: 3px;
}

.navboxleft_38F0CF1 {
    color: #ffff9d;
    font-size: 12px;
    background-color: #9daf84;
    width: 140px;
    height: auto;
    float: left;
    padding: 2px;
    border: solid 1px maroon;
}

.navboxauto_38F0CF1 {
    background-color: #c0cab2;
    margin-left: 145px;
    width: auto;
    height: 100%;
    min-width: 500px;
    padding: 3px;
}

.padbcont_4059415 {
    background-color: #9daf84;
    width: 100%;
    border-color: maroon;
    display: flex;
    justify-content: space-evenly;
    /* Gleiche Abstände */
    align-items: center;
    box-sizing: border-box;
    padding: 0 5px;
    /* Sicherheits-Abstand für kleine Geräte */
    overflow: hidden;
    /* Verhindert unschönen Horizontal-Overflow */
}

/* Kritisch: Ermöglicht das Schrumpfen der Logo-Container */
.pnz-natur-logo,
.holzhermann-logo {
    min-width: 0;
    /* Flexbox-Workaround: Ignoriert Mindestbreite des Inhalts */
    flex: 0 1 auto;
    /* Kann schrumpfen, aber nicht überproportional wachsen */
}

/* Responsive Bilder: Skalieren auf Container-Breite */
.pnz-natur-logo img,
.holzhermann-logo img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Entfernt unsichtbaren Abstand durch Inline-Elemente */
}

.padbox_4059415 {
    background-image: url(Bilder/logo/top_logo_01.jpg);
    background-repeat: no-repeat;
    background-position: 0 top;
    width: auto;
    height: inherit;
    padding: 33px;
}

.rahmen-rot {
    border: groove 1px maroon;
}


/* Selbst eingefügt */

.pnz-natur-logo {
    display: flex;
    justify-content: center;
    /* horizontal */
}

.shop-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.shop-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.shop-button:hover::before {
    left: 100%;
}

.shop-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 204, 113, 0.6);
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.shop-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.5);
}

.cursor-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.button-text {
    position: relative;
    z-index: 1;
}

.shop-button::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(5px);
}

.shop-button:hover::after {
    opacity: 0.7;
}

.shop-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 80%;
    margin: 0 auto;
    margin-bottom: 2%;
}

.shop-text {
    font-size: 14pt;
    line-height: 1.5;
}

.bottom-text-withlink{
    text-align: center;
}