
@font-face {
    font-family: 'Arkhipelago';
    src: url('../fonts/arkhipelago-webfont.woff2') format('woff2'),
    url('../fonts/arkhipelago-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'BebasNeue';
    src: url('../fonts/bebasneue-bold-webfont.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

body{
    background-color: #fffbf2;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    text-transform: none;
}

.header-bg{
    background-image:
            linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2)),
            url('/img/v2/Bieronauten-Header.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


.header-size {
    min-height:700px;
}

.header-nav,.header-nav a,.header-nav a:hover {
    color:#FFF;
    font-family: BebasNeue, Sans-serif;
    text-transform: uppercase;
}

.header-nav a:hover {
    text-decoration:underline;

}

.header-social, .header-social a{
    color:#FFF;
}

.header-overlay-bottom{
    background:url(../img/bg-header-overlay-lg.png);
    background-position:center;
    background-size:cover;
    min-height:98px;
    margin-top:-98px;
}

.btn-header {
    border: 1px solid #FFF;
    color:#FFF;
    font-family: BebasNeue, Sans-serif;
    letter-spacing: 1px;
}

.btn-header:hover {
    border: 1px solid #c7a17a;
    color: #c7a17a;
    font-family: BebasNeue, Sans-serif;
    letter-spacing: 1px;
}

h1 {
    font-family: BebasNeue, Sans-serif;
    font-size: 150px;
    font-weight: 900;
    letter-spacing: 0.5px;
    line-height: 1;
    text-transform: uppercase;
}


h2 {
    color: #c7a17a;
    font-family: Arkhipelago, Sans-serif;
    font-size: 60px;
}

h3 {
    font-family: BebasNeue, Sans-serif;
    font-size: 100px;
    font-weight: 900;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-top:-20px;
    text-transform: uppercase;
}

h4 {
    font-family: BebasNeue, Sans-serif;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0.5px;
    line-height: 1;
    text-transform: uppercase;
}



.btn-choice{
    display:inline-block;
    min-width:110px;
    padding:10px 18px;
    margin:0 10px 10px 0;
    border:1px solid #8d8d8d;
    color:#8d8d8d;
    background:none;
    text-align:center;
    cursor:pointer;
    font-size:16px;
    line-height:1.2;
    transition:all 0.2s ease;
}

.btn-submit{
    display:inline-block;
    min-width:110px;
    padding:10px 18px;
    margin:0 10px 10px 0;
    text-align:center;
    cursor:pointer;
    font-size:16px;
    line-height:1.2;
    transition:all 0.2s ease;
    background: #8b5e3c;
    color: #fff;
    border:1px solid #8d8d8d;
}

.btn-submit:hover{
    color: #8b5e3c;
    background #fff;
    border:1px solid #8d8d8d;
}


.btn-choice.active{
    border:1px solid #000;
    color:#000;
    background:none;
}

.choice-group span {
    display: inline-block;
    margin: 6px;
    padding: 10px 16px;
    border: 1px solid #c9b28d;
    cursor: pointer;
    transition: all .2s ease;
    background: #fff;
}

.choice-group span:hover,
.choice-group span.active {
    background: #8b5e3c;
    color: #fff;
    border-color: #8b5e3c;
}

.beer-slider-group label {
    display: block;
    margin-bottom: 6px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
    color: #666;
}

/* ==================================================
   TOP-PICKS BIERBOXEN
================================================== */

.beer-box {
    --beer-color: #627c48;
    --beer-border: #91a283;
    --beer-hover: #50663b;

    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 55px;
    padding: 72px 18px 20px;

    background-color: #FDF7EF;
    border: 1px solid var(--beer-border);
    border-radius: 12px;

    text-align: center;

    display: flex;
    flex-direction: column;
}

/* Unterbrechung des oberen Rahmens */
.beer-box::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 50%;
    z-index: 1;

    width: 112px;
    height: 8px;

    background: #fffdf8;
    transform: translateX(-50%);
}

/* Runder Icon-Bereich */
.beer-box-icon {
    position: absolute;
    top: -50px;
    left: 50%;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 98px;
    height: 98px;

    padding: 12px;

    background: #fffdf8;
    border: 1px solid var(--beer-border);
    border-radius: 50%;

    transform: translateX(-50%);
}

/* Icon-Bild deutlich größer darstellen */
.beer-box-icon img {
    display: block;

    width: 68px;
    height: 68px;
    max-width: none;

    object-fit: contain;

    /* PNG wird in der jeweiligen Boxfarbe eingefärbt */
    filter: var(--beer-icon-filter);
}

/* Überschrift */
.beer-box h2 {
    margin: 5px 0 15px;

    color: var(--beer-color);

    font-family: BebasNeue, Impact, "Arial Narrow", sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Produktbild */
.beer-box-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;

    width: 100%;
    height: 285px;
    margin-bottom: 10px;
}

.beer-box-image img {
    display: block;

    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
}

/* Beschreibung */
.beer-box p {
    margin: 10px 0 18px;

    color: #111111;

    font-size: 17px;
    line-height: 1.35;
}

/* Button */
.beer-box-button {
    display: block;

    width: 100%;
    margin-top: auto;
    padding: 15px 20px;

    background: var(--beer-color);
    border-radius: 7px;

    color: #ffffff;
    font-family: BebasNeue, sans-serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.3px;
    text-decoration: none;
    text-transform: uppercase;

    transition:
            background-color 0.2s ease,
            transform 0.2s ease;
}

.beer-box-button:hover {
    background: var(--beer-hover);
    color: #ffffff;
    transform: translateY(-2px);
}


/* ==================================================
   EINZELNE BIERFARBEN
================================================== */

/* Zwickl – Grün */
.beer-box-zwickl {
    --beer-color: #627c48;
    --beer-border: #91a283;
    --beer-hover: #50663b;

    --beer-icon-filter:
            brightness(0)
            saturate(100%)
            invert(46%)
            sepia(15%)
            saturate(1175%)
            hue-rotate(43deg)
            brightness(91%)
            contrast(87%);
}

/* Lager – Goldgelb */
.beer-box-lager {
    --beer-color: #c98b00;
    --beer-border: #d7ad56;
    --beer-hover: #a97400;

    --beer-icon-filter:
            brightness(0)
            saturate(100%)
            invert(57%)
            sepia(91%)
            saturate(1288%)
            hue-rotate(8deg)
            brightness(91%)
            contrast(102%);
}

/* IPA – Petrol */
.beer-box-ipa {
    --beer-color: #28797a;
    --beer-border: #79a8a9;
    --beer-hover: #1e6263;

    --beer-icon-filter:
            brightness(0)
            saturate(100%)
            invert(39%)
            sepia(20%)
            saturate(1587%)
            hue-rotate(132deg)
            brightness(94%)
            contrast(88%);
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1199.98px) {
    .beer-box h2 {
        font-size: 38px;
    }
}

@media (max-width: 991.98px) {
    .beer-box {
        max-width: 500px;
        margin-right: auto;
        margin-bottom: 45px;
        margin-left: auto;
    }

    .beer-box h2 {
        font-size: 42px;
    }

    .beer-box-image {
        height: 300px;
    }
}

@media (max-width: 575.98px) {
    .beer-box {
        padding: 68px 15px 16px;
    }

    .beer-box-icon {
        top: -46px;
        width: 90px;
        height: 90px;
    }

    .beer-box-icon img {
        width: 62px;
        height: 62px;
    }

    .beer-box h2 {
        font-size: 36px;
    }

    .beer-box-image {
        height: 250px;
    }

    .beer-box p {
        font-size: 15px;
    }
}


.beer-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 20px;
    background: #d8c3a5;
    outline: none;
}

.beer-slider::-webkit-slider-runnable-track {
    height: 10px;
    border-radius: 20px;
    background: #d8c3a5;
}

.beer-slider::-moz-range-track {
    height: 10px;
    border-radius: 20px;
    background: #d8c3a5;
}

.beer-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 50px;
    height: 50px;
    margin-top: -12px;
    border: 0;
    cursor: pointer;
    background: url('../pics/beer-bottle-icon.png') center center / contain no-repeat;
}

.beer-slider::-moz-range-thumb {
    width: 34px;
    height: 34px;
    border: 0;
    cursor: pointer;
    background: url('../pics/beer-bottle-icon.png') center center / contain no-repeat;
    border-radius: 0;
}

.slider-value {
    text-align: center;
    font-weight: bold;
    margin-top: 8px;
    color: #8b5e3c;
}

.btn-choice-feels.disabled,
.btn-choice-feels.inactive {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-choice-feels.disabled {
    opacity: 0.3;
    pointer-events: none;
}

.btn-choice-feels.exclusive-block {
    opacity: 0.4;
    pointer-events: none;
    border-color: #999;
}

.btn-choice-feels.disabled,
.btn-choice-feels.exclusive-block {
    background: #eee !important;
    color: #999 !important;
    border-color: #ccc !important;
    opacity: 1; /* wichtig → sonst wirkt es washed */
    cursor: not-allowed;
    pointer-events: none;
}

/* optional: aktive hervorheben */
.btn-choice-feels.active {
    background: #8b5e3c;
    color: #fff;
    border-color: #8b5e3c;
}

.overlay-top{
    background:url(../img/bg-header-overlay-lg-2.png);
    background-position:center;
    /*background-size:cover;*/
    min-height:98px;
    margin-top:-600px;
}

.overlay-bottom{
    background:url(../img/bg-header-overlay-lg.png);
    background-position:center;
    /**background-size:cover;*/
    min-height:98px;
    margin-top:404px;
}

.divider-one{
    background-image:
            linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2)),
            url('../img/v2/Bieronauten-so-funktionierts.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 600px;
}

.divider-two{
    background-image:
            linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2)),
            url('../pics/social-proof-divider.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 600px;
}


.divider-three{
    background-image:
            linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2)),
            url('../img/v2/Bieronauten-fragen-2.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 600px;
}

.funktionierts-one,.funktionierts-two,.funktionierts-three
{ padding:15px; margin:10px; border-radius:0px;}

.funktionierts-one
{
    background-position:center;
    background-image:
            linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2)),
            url(../pics/dein-bier.png);
}

.funktionierts-two
{ background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2)), url(../pics/der-prozess.png); background-position:center; }

.funktionierts-three
{ background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2)), url(../pics/dein-design.png); background-position:center; }

.funktionierts-box
{
    padding:20px; height:400px; background:none; border: 1px #FFF solid; border-radius:0px; color:#FFF;
    position: relative;
    overflow: hidden;
}

.funktionierts-box > div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    width: auto;
    padding: 10px;
    box-sizing: border-box;
}
.funktionierts-box h4 {
    hyphens: auto;
    -webkit-hyphens: auto;
    overflow-wrap: normal;
    word-break: normal;
}

.funktionierts-box h4 {
    hyphenate-limit-chars: 8 4 4;
}

/* Startzustand */
.funktionierts-box p {
    display: none;
}

.line-col {
    position: relative;
    height: 80px;
}

.line-col::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100px;
    background: #000; /* Farbe anpassen */
}

.event-one
{
    background-position:center; padding:15px;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2)), url(../pics/hochzeit.png);
}
.event-two
{
    background-position:center; padding:15px;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2)), url(../pics/geburtstag.png);
}
.event-three
{
    background-position:center; padding:15px;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2)), url(../pics/firmenevent.png);
}
.event-four
{
    background-position:center; padding:15px;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2)), url(../pics/junggesellenabschied.png);
}

.line-col-2 {
    position: relative;
    height: 80px;
}

.line-col-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    transform: translateX(-50%);
    width: 2px;
    height: 100px;
    background: #000; /* Farbe anpassen */
}

.bg-brown {
    background: #8b5e3c;
    color: #fff;
    border-color: #8b5e3c;
}
.produkt-box {
    padding: 30px;
    margin-left: -160px;
    margin-top: 30px;
    border-radius: 0px;
}

.testimonial-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 40px 70px 60px;
}

.testimonial-slider {
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex;
    transition: transform .45s ease;
}

.testimonial-item {
    flex: 0 0 33.3333%;
    padding: 0 15px;
    opacity: .5;
    transition: opacity .3s ease, transform .3s ease;
}

.testimonial-item.active {
    opacity: 1;
    transform: scale(1.03);
}

.testimonial-item .card {
    min-height: 230px;
    padding: 35px;
    border: 0;
    border-radius: 0;
}

.bg-brown {
    background: #8b5e3c;
}

.testimonial-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 5;
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 0%;
    background: none;
    border:0px solid;
    color: #8b5e3c;
    font-size: 36px;
    line-height: 38px;
    cursor: pointer;
}

.testimonial-prev {
    left: 15px;
}

.testimonial-next {
    right: 15px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
.testimonial-dot {
    width: 50px;
    height: 50px;
    background: transparent;
    position: relative;
}

.testimonial-dot::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #c9b28d;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.testimonial-dot.active::before {
    display: none;
}

.testimonial-dot.active {
    background: url('../pics/beer-bottle-icon.png') center center / contain no-repeat;
}
@media (max-width: 991px) {
    .testimonial-item {
        flex: 0 0 100%;
    }

    .testimonial-slider-wrapper {
        padding: 30px 55px 55px;
    }
}

.faq-box {
    border: 1px solid #111;
    background: #f8f2e8;
}

.faq-item {
    border-bottom: 1px solid #111;
}

.faq-item:last-child {
    border-bottom: 0;
}

.faq-question {
    min-height: 70px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;

    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #000;
}

.faq-item.active .faq-question {
    color: #c49a74;
}

.faq-icon {
    font-family: Arial, sans-serif;
    font-size: 34px;
    line-height: 1;
    color: inherit;
}

.faq-answer {
    display: none;
    padding: 25px 30px 30px;
    border-top: 1px solid #111;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: #000;
}


.label-box,
.cart-box {
    background: #fff;
    border: 1px solid #e4ded5;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.design-thumb {
    border: 2px solid #e4ded5;
    border-radius: 14px;
    padding: 10px;
    cursor: pointer;
    text-align: center;
    transition: .2s;
}

.design-thumb.active,
.design-thumb:hover {
    border-color: #8b5e34;
    background: #f8f1e8;
}

.thumb-img {
    height: 95px;
    border-radius: 10px;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-weight: bold;
}

.price-table td,
.price-table th {
    text-align: center;
    vertical-align: middle;
}

.price-cell {
    border: 2px solid #e4ded5;
    border-radius: 14px;
  /*  padding: 15px; */
    line-height: 1;
    cursor: pointer;
    transition: .2s;
    padding: 7px;
}

.price-cell.active,
.price-cell:hover {
    border-color: #8b5e34;
    background: #f8f1e8;
}

.price-big {
    font-size: 1.6rem;
    font-weight: 800;
}

.cart-box {
    top: 20px;
}

.cart-section {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.cart-section p {
    margin-bottom: 5px;
}

.cart-total {
    background: #f8f1e8;
    border-radius: 14px;
    padding: 18px;
}

@media(max-width: 991px) {
    .cart-box {
        position: static !important;
        margin-top: 40px;
    }
}

.cart-box {
    background: #fff;
    border: 2px solid #e4ded5;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    top: 20px;
}

.payment-box {
    display: grid;
    gap: 10px;
}

.payment-option {
    border: 2px solid #e4ded5;
    background: #fff;
    border-radius: 14px;
    padding: 14px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: .2s;
}

.payment-option input {
    margin-right: 10px;
}

.payment-option.active,
.payment-option:hover {
    border-color: #8b5e34;
    background: #f8f1e8;
}

.payment-option span {
    font-weight: 700;
}

.thumb-img {
    position: relative;
    overflow: hidden;
}

.template-zoom-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.template-zoom-btn:hover {
    transform: scale(1.05);
}

#templatePreviewImg {
    max-height: 80vh;
    width: auto;
}

.quality-box {
    padding: 18px 30px;
    border-radius: 14px;
    background:
            linear-gradient(
                    90deg,
                    rgba(246, 238, 226, 0.98),
                    rgba(255, 252, 247, 0.98),
                    rgba(246, 238, 226, 0.98)
            );
    box-shadow: 0 2px 12px rgba(90, 65, 40, 0.06);
}

.quality-icon {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b623d;
    font-size: 64px;
    line-height: 1;
}

.quality-title {
    margin: 0 0 4px;
    color: #252a2e;
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.quality-text {
    color: #151515;
    font-size: 17px;
    line-height: 1.25;
}

.quality-text strong {
    font-weight: 800;
}

.quality-handwriting {
    position: relative;
    display: inline-block;
    padding-bottom: 13px;
    color: #8b623d;
    font-family: "Segoe Print", "Bradley Hand", cursive;
    font-size: 25px;
    font-style: italic;
    transform: rotate(-2deg);
    white-space: nowrap;
}

.quality-handwriting::after {
    content: "";
    position: absolute;
    right: 25px;
    bottom: 4px;
    width: 190px;
    height: 2px;
    background: #8b623d;
    transform: rotate(-7deg);
    transform-origin: right center;
}

.quality-handwriting i {
    margin-left: 5px;
    font-size: 23px;
}

@media (max-width: 767.98px) {
    .quality-box {
        padding: 22px 18px;
        text-align: center;
    }

    .quality-icon {
        width: auto;
        height: auto;
        font-size: 58px;
    }

    .quality-title {
        font-size: 23px;
    }

    .quality-text {
        font-size: 16px;
    }

    .quality-handwriting {
        margin-top: 10px;
        font-size: 21px;
        white-space: normal;
    }
}