/* =====================================================
   Getränkekarte – Haus Jaguar
   ===================================================== */

/* HERO */
.gtr-hero {
    position: relative;
    min-height: 360px;
    background: linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
    overflow: hidden;
}
.gtr-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top, rgba(155, 28, 28, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse at bottom, rgba(201, 168, 76, 0.10) 0%, transparent 50%);
    z-index: 1;
}
.gtr-hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0 3rem;
    text-align: center;
}
.gtr-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--gold, #c9a84c);
    letter-spacing: .04em;
    margin: 1rem 0 .3rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .8);
}
.gtr-hero-sub {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .82);
    font-size: 1.05rem;
    line-height: 1.65;
    font-family: 'Cormorant Garamond', serif;
}
.gtr-hero-hint {
    margin-top: 1.2rem;
    font-size: .85rem;
    color: rgba(255, 255, 255, .55);
    letter-spacing: .04em;
    font-style: italic;
}

/* ANGEBOT DES MONATS */
.gtr-aktion {
    padding: 4rem 0 2rem;
}
.gtr-aktion-card {
    position: relative;
    background: linear-gradient(135deg, rgba(20, 15, 10, .95) 0%, rgba(35, 25, 15, .95) 100%);
    border: 2px solid rgba(201, 168, 76, .4);
    border-radius: 8px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .5),
        inset 0 1px 0 rgba(232, 213, 163, .15);
}
.gtr-aktion-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top right, rgba(201, 168, 76, .12), transparent 60%);
    pointer-events: none;
}
.gtr-aktion-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 5;
    background: linear-gradient(135deg, #c9a84c 0%, #e8d5a3 100%);
    color: #050505;
    padding: .55rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .08em;
    box-shadow: 0 4px 16px rgba(201, 168, 76, .5);
}
.gtr-aktion-content {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 360px;
}
.gtr-aktion-img {
    background: #050505;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gtr-aktion-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 2rem;
}
.gtr-aktion-text {
    padding: 4rem 3rem 3rem;
    color: rgba(255, 255, 255, .9);
}
.gtr-aktion-kat {
    display: inline-block;
    color: var(--gold, #c9a84c);
    font-size: .8rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: .5rem;
}
.gtr-aktion-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: #fff;
    margin: 0 0 .5rem;
    line-height: 1.1;
}
.gtr-aktion-untertitel {
    color: rgba(232, 213, 163, .85);
    font-size: 1rem;
    margin: 0 0 1rem;
    font-style: italic;
}
.gtr-aktion-desc {
    color: rgba(255, 255, 255, .75);
    line-height: 1.65;
    margin: 1rem 0 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
}
.gtr-aktion-meta {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 168, 76, .25);
}
.gtr-aktion-menge {
    color: rgba(255, 255, 255, .6);
    font-size: 1rem;
}
.gtr-aktion-preis {
    font-family: 'Playfair Display', serif;
    color: var(--gold, #c9a84c);
    font-size: 2.4rem;
    font-weight: 700;
}

/* PRE-SELECTED (von Damen-Seite) */
.gtr-preselected {
    padding: 2rem 0;
}
.gtr-preselected-card {
    background: linear-gradient(135deg, rgba(155, 28, 28, .12), rgba(201, 168, 76, .08));
    border: 1px solid rgba(201, 168, 76, .3);
    border-radius: 6px;
    padding: 1.5rem 2rem;
    text-align: center;
}
.gtr-preselected-label {
    display: inline-block;
    color: var(--gold, #c9a84c);
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.gtr-preselected-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.gtr-preselected-inner img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #050505;
    border-radius: 4px;
    padding: .5rem;
}
.gtr-preselected-inner h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin: 0 0 .25rem;
    font-size: 1.4rem;
}
.gtr-preselected-inner p {
    color: rgba(232, 213, 163, .8);
    font-size: .9rem;
    margin: 0 0 .25rem;
}
.gtr-preselected-preis {
    color: var(--gold, #c9a84c);
    font-weight: 700;
    font-size: 1.2rem;
}
.gtr-preselected-hint {
    margin-top: 1rem;
    color: rgba(255, 255, 255, .65);
    font-size: .9rem;
}
.gtr-preselected-hint a {
    color: var(--gold, #c9a84c);
    text-decoration: underline;
}

/* GETRÄNKE-SECTION */
.gtr-section {
    padding: 4rem 0 6rem;
    background: var(--dark, #0a0a0a);
}
.gtr-kategorie {
    margin-bottom: 5rem;
}
.gtr-kategorie:last-child { margin-bottom: 0; }
.gtr-kategorie-header {
    text-align: center;
    margin-bottom: 3rem;
}
.gtr-kategorie-header h2 {
    font-family: 'Playfair Display', serif;
    color: var(--gold, #c9a84c);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin: 0 0 .5rem;
    letter-spacing: .02em;
}
.gtr-kategorie-header p {
    color: rgba(255, 255, 255, .6);
    font-size: 1rem;
    margin: 0 0 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

/* GRID */
.gtr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.gtr-card {
    position: relative;
    background: linear-gradient(180deg, rgba(15, 15, 15, .9) 0%, rgba(8, 8, 8, .95) 100%);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 6px;
    overflow: hidden;
    transition: all .35s cubic-bezier(.2, .8, .2, 1);
    display: flex;
    flex-direction: column;
}
.gtr-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 168, 76, .35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .6), 0 0 0 1px rgba(201, 168, 76, .15);
}
.gtr-card.is-angebot {
    border-color: rgba(201, 168, 76, .5);
    box-shadow: 0 0 0 1px rgba(201, 168, 76, .3), 0 8px 24px rgba(201, 168, 76, .1);
}
.gtr-card.is-preselected {
    border-color: rgba(155, 28, 28, .6);
    box-shadow: 0 0 0 2px rgba(155, 28, 28, .4);
    animation: gtrPulse 2s ease-in-out infinite;
}
@keyframes gtrPulse {
    0%, 100% { box-shadow: 0 0 0 2px rgba(155, 28, 28, .4); }
    50%      { box-shadow: 0 0 0 4px rgba(155, 28, 28, .25); }
}
.gtr-card-img {
    position: relative;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gtr-card-img img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .6));
    transition: transform .5s ease;
}
.gtr-card:hover .gtr-card-img img {
    transform: scale(1.05);
}
.gtr-card-noimg {
    color: rgba(201, 168, 76, .25);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gtr-card-noimg svg {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}
.gtr-badge {
    position: absolute;
    top: .8rem;
    right: .8rem;
    background: linear-gradient(135deg, rgba(201, 168, 76, .95), rgba(232, 213, 163, .95));
    color: #050505;
    padding: .25rem .7rem;
    border-radius: 4px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.gtr-badge-aktion {
    top: auto;
    bottom: .8rem;
    right: .8rem;
    background: linear-gradient(135deg, #9b1c1c, #c92020);
    color: #fff;
}
.gtr-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.gtr-card-body h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.4rem;
    margin: 0 0 .25rem;
    letter-spacing: .01em;
}
.gtr-untertitel {
    color: rgba(232, 213, 163, .75);
    font-size: .85rem;
    font-style: italic;
    margin: 0 0 .75rem;
}
.gtr-desc {
    color: rgba(255, 255, 255, .6);
    font-size: .9rem;
    line-height: 1.55;
    margin: .5rem 0 1rem;
    font-family: 'Cormorant Garamond', serif;
}
.gtr-card-meta {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 168, 76, .12);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}
.gtr-menge {
    color: rgba(255, 255, 255, .5);
    font-size: .85rem;
}
.gtr-preis {
    font-family: 'Playfair Display', serif;
    color: var(--gold, #c9a84c);
    font-size: 1.6rem;
    font-weight: 700;
}

/* CTA */
.gtr-cta {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    text-align: center;
}
.gtr-cta-inner h2 {
    font-family: 'Playfair Display', serif;
    color: var(--gold, #c9a84c);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin: 0 0 1rem;
}
.gtr-cta-inner p {
    color: rgba(255, 255, 255, .7);
    font-size: 1.05rem;
    margin: 0 0 2rem;
    font-family: 'Cormorant Garamond', serif;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .gtr-aktion-content {
        grid-template-columns: 1fr;
    }
    .gtr-aktion-img {
        aspect-ratio: 4 / 3;
    }
    .gtr-aktion-text {
        padding: 4rem 1.5rem 2rem;
    }
    .gtr-aktion-text h2 {
        font-size: 1.8rem;
    }
    .gtr-aktion-preis {
        font-size: 1.8rem;
    }
    .gtr-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1rem;
    }
    .gtr-preselected-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ==============================================================
   Getränke-CTA auf der Damen-Detailseite
   ============================================================== */
.girl-getraenke-cta {
    position: relative;
    margin: 4rem 0 3rem;
    padding: 3rem 2rem;
    border: 1px solid rgba(201, 168, 76, .25);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(20, 15, 10, .95) 0%, rgba(30, 20, 12, .95) 100%);
    overflow: hidden;
}
.ggc-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top right, rgba(201, 168, 76, .14), transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(155, 28, 28, .1), transparent 55%);
    pointer-events: none;
}
.ggc-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.ggc-label {
    display: inline-block;
    color: var(--gold, #c9a84c);
    font-size: .8rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.ggc-title {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin: 0 0 1rem;
    line-height: 1.2;
}
.ggc-sub {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, .7);
    font-size: 1rem;
    line-height: 1.65;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
}
.ggc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}
.ggc-item {
    background: rgba(0, 0, 0, .4);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
}
.ggc-item:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 168, 76, .4);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .5);
}
.ggc-item.is-aktion {
    border-color: rgba(201, 168, 76, .5);
    box-shadow: 0 0 0 1px rgba(201, 168, 76, .25);
}
.ggc-item-img {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #1a1a1a, #050505);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.ggc-item-img img {
    max-width: 70%;
    max-height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .6));
    transition: transform .4s ease;
}
.ggc-item:hover .ggc-item-img img {
    transform: scale(1.06);
}
.ggc-item-noimg {
    color: rgba(201, 168, 76, .25);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ggc-item-noimg svg {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}
.ggc-item-body {
    padding: 1rem 1.2rem 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.ggc-item-aktion,
.ggc-item-badge {
    display: inline-block;
    align-self: flex-start;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 3px;
    margin-bottom: .4rem;
}
.ggc-item-aktion {
    background: linear-gradient(135deg, #c9a84c, #e8d5a3);
    color: #050505;
}
.ggc-item-badge {
    background: rgba(201, 168, 76, .2);
    color: #d4af37;
    border: 1px solid rgba(201, 168, 76, .3);
}
.ggc-item-body h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin: 0 0 .25rem;
    font-size: 1.1rem;
}
.ggc-item-body p {
    color: rgba(232, 213, 163, .65);
    font-size: .8rem;
    margin: 0 0 .75rem;
    font-style: italic;
}
.ggc-item-preis {
    margin-top: auto;
    color: var(--gold, #c9a84c);
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
}
.ggc-actions {
    margin-top: 1rem;
}

@media (max-width: 600px) {
    .girl-getraenke-cta {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    .ggc-grid {
        grid-template-columns: 1fr;
    }
}
