/**
 * Tierliebe Component Styles
 * Module: Accordion, Tabs, Buttons, Forms, Quiz, Gallery, Animal Cards
 */

/* ============================================
   HERO SECTION (Light/Colorful)
   ============================================ */
.hero {
    position   : relative;
    min-height : 85vh;
    display    : flex;
    align-items: center;
    padding    : 100px 30px 80px;
    overflow   : hidden;
    background : var(--bg-cream);
}

.hero .blob-1 {
    position  : absolute;
    top       : -20%;
    right     : -10%;
    width     : 700px;
    height    : 700px;
    background: var(--pastel-pink);
}

.hero .blob-2 {
    position  : absolute;
    bottom    : -15%;
    left      : -5%;
    width     : 500px;
    height    : 500px;
    background: var(--pastel-mint);
}

.hero-content {
    max-width            : 1200px;
    margin               : 0 auto;
    position             : relative;
    z-index              : 1;
    display              : grid;
    grid-template-columns: 1fr 1fr;
    gap                  : 60px;
    align-items          : center;
}

.hero-text h1 {
    font-size    : 4.5rem;
    font-weight  : 600;
    margin-bottom: 30px;
    line-height  : 1.1;
}

.hero-text h1 .highlight {
    position: relative;
    display : inline-block;
}

.hero-text h1 .highlight::after {
    content      : '';
    position     : absolute;
    bottom       : 8px;
    left         : -5px;
    right        : -5px;
    height       : 20px;
    background   : var(--pastel-pink);
    border-radius: 10px;
    z-index      : -1;
}

.hero-text .subtitle {
    font-size    : 1.5rem;
    color        : var(--text-medium);
    margin-bottom: 40px;
    line-height  : 1.6;
}

.hero-visual {
    position  : relative;
    text-align: center;
}

.hero-main-icon {
    font-size: 18rem;
    filter   : drop-shadow(0 10px 40px rgba(0, 0, 0, 0.1));
    animation: bounce-gentle 3s ease-in-out infinite;
}

@keyframes bounce-gentle {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-floating-icons {
    position : absolute;
    font-size: 3rem;
    animation: orbit 15s linear infinite;
}

.hero-floating-icons:nth-child(2) {
    top            : 10%;
    left           : 10%;
    animation-delay: 0s;
}

.hero-floating-icons:nth-child(3) {
    top            : 20%;
    right          : 5%;
    animation-delay: 5s;
}

.hero-floating-icons:nth-child(4) {
    bottom         : 15%;
    left           : 5%;
    animation-delay: 10s;
}

@keyframes orbit {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(10px, -10px) rotate(5deg);
    }

    50% {
        transform: translate(-5px, 5px) rotate(-5deg);
    }

    75% {
        transform: translate(-10px, -5px) rotate(3deg);
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    font-family    : 'Fredoka', sans-serif;
    font-size      : 1.1rem;
    font-weight    : 600;
    padding        : 16px 32px;
    border         : none;
    border-radius  : 35px;
    cursor         : pointer;
    transition     : all 0.3s ease;
    text-decoration: none;
    display        : inline-flex;
    align-items    : center;
    justify-content: center;
    position       : relative;
    text-align     : center;
    line-height    : 1.5;
}

.hero-buttons {
    display        : flex;
    gap            : 20px;
    justify-content: center;
    align-items    : stretch;
    margin-top     : 40px;
    max-width      : 100%;
}

.hero-buttons .btn {
    flex     : 1 1 0;
    max-width: 300px;
    min-width: 0;
    padding  : 18px 28px;
}

.btn-primary {
    background: var(--cute-coral);
    color     : white;
    box-shadow: 0 4px 0 0 #FF7B7F, var(--shadow-md);
}

.btn-primary:hover {
    transform : translateY(-2px);
    box-shadow: 0 6px 0 0 #FF7B7F, var(--shadow-lg);
}

.btn-primary:focus {
    outline       : 3px solid #FF7B7F;
    outline-offset: 3px;
}

.btn-primary:focus-visible {
    outline       : 3px solid #FF7B7F;
    outline-offset: 3px;
}

.btn-primary:active {
    transform : translateY(2px);
    box-shadow: 0 2px 0 0 #FF7B7F, var(--shadow-sm);
}

.btn-secondary {
    background: var(--pastel-mint);
    color     : var(--text-dark);
    border    : 3px solid var(--cute-mint);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--cute-mint);
    transform : translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary:focus {
    outline       : 3px solid var(--cute-mint);
    outline-offset: 3px;
}

.btn-secondary:focus-visible {
    outline       : 3px solid var(--cute-mint);
    outline-offset: 3px;
}

.btn-secondary:active {
    transform : translateY(2px);
    box-shadow: var(--shadow-sm);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding  : 80px 40px;
    max-width: 1200px;
    margin   : 0 auto;
    position : relative;
}

.section-header {
    text-align   : center;
    margin-bottom: 70px;
}

.section-title {
    font-size    : 3.5rem;
    margin-bottom: 20px;
    position     : relative;
    display      : inline-block;
}

.section-title .emoji {
    display  : inline-block;
    animation: wiggle 2s ease-in-out infinite;
}

.section-title::after {
    content      : '';
    position     : absolute;
    bottom       : -15px;
    left         : 50%;
    transform    : translateX(-50%);
    width        : 100px;
    height       : 8px;
    background   : var(--pastel-pink);
    border-radius: 10px;
}

.section-subtitle {
    font-size  : 1.1rem;
    color      : var(--text-medium);
    margin-top : 25px;
}

/* ============================================
   INFO CARDS GRID
   ============================================ */
.cards-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap                  : 30px;
    margin-top           : 50px;
}

.card {
    background   : white;
    padding      : 40px;
    border-radius: 35px;
    position     : relative;
    overflow     : hidden;
    transition   : all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow   : var(--shadow-sm);
}

.card::before {
    content      : '';
    position     : absolute;
    top          : 0;
    left         : 0;
    right        : 0;
    height       : 10px;
    border-radius: 35px 35px 0 0;
}

.card::after {
    content      : '';
    position     : absolute;
    bottom       : -50%;
    right        : -20%;
    width        : 150px;
    height       : 150px;
    border-radius: 50%;
    opacity      : 0.08;
}

.card.mint::before {
    background: var(--pastel-mint);
}

.card.mint::after {
    background: var(--pastel-mint);
}

.card.pink::before {
    background: var(--pastel-pink);
}

.card.pink::after {
    background: var(--pastel-pink);
}

.card.peach::before {
    background: var(--pastel-peach);
}

.card.peach::after {
    background: var(--pastel-peach);
}

.card.lavender::before {
    background: var(--pastel-lavender);
}

.card.lavender::after {
    background: var(--pastel-lavender);
}

.card.coral::before {
    background: var(--pastel-coral);
}

.card.coral::after {
    background: var(--pastel-coral);
}

/* Hover entfernt - Cards sind statische Informationselemente */

.card-icon {
    font-size    : 4rem;
    margin-bottom: 25px;
    display      : block;
    filter       : drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.card h3 {
    font-size    : 1.8rem;
    margin-bottom: 18px;
    font-weight  : 600;
}

.card p {
    color      : var(--text-medium);
    line-height: 1.7;
    font-size  : 1.05rem;
}

/* ============================================
   CUTE INFO BOXES
   ============================================ */
.info-box {
    background   : white;
    padding      : 40px 35px;
    border-radius: 25px;
    margin       : 40px 0;
    position     : relative;
    border       : 3px solid;
    box-shadow   : var(--shadow-md);
}

.info-box::before {
    content        : attr(data-emoji);
    position       : absolute;
    top            : -30px;
    left           : 50%;
    transform      : translateX(-50%);
    font-size      : 3.5rem;
    font-family    : "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
    background     : white;
    width          : 70px;
    height         : 70px;
    border-radius  : 50%;
    display        : flex;
    align-items    : center;
    justify-content: center;
    border         : 3px solid;
    box-shadow     : var(--shadow-sm);
}

/* Fallback to force icons even if data-emoji is missing/stripped */
.info-box.warning::before {
    content: attr(data-emoji, "⚠️");
}

.info-box.warning {
    border-color: var(--cute-coral);
    background  : var(--pastel-peach);
}

.info-box.warning::before {
    border-color: var(--cute-coral);
}

.info-box.info {
    border-color: var(--cute-mint);
    background  : var(--pastel-mint);
}

.info-box.info::before {
    border-color: var(--cute-mint);
}

.info-box.love {
    border-color: var(--pastel-pink);
    background  : white;
}

.info-box.love::before {
    border-color: var(--pastel-pink);
}

.info-box h3,
.info-box h4 {
    font-size  : 1.4rem;
    margin     : 10px 0 18px 0;
    text-align : center;
    line-height: 1.4;
}

.info-box p {
    margin     : 12px 0;
    line-height: 1.75;
    font-size  : 1.05rem;
}

.info-box ul {
    margin: 18px 0 18px 25px;
}

.info-box li {
    margin     : 10px 0;
    position   : relative;
    font-size  : 1rem;
    line-height: 1.7;
}

.info-box li::marker {
    content: '🐾 ';
}

/* Override für Listen ohne Pfötchen-Icons */
.info-box ul.no-paw li::marker {
    content: '• ';
}

.info-box .highlight-text {
    background   : white;
    padding      : 20px 25px;
    border-radius: 20px;
    margin       : 20px 0;
    font-style   : italic;
    border-left  : 5px solid var(--cute-coral);
    box-shadow   : var(--shadow-sm);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap                  : 35px;
    margin-top           : 60px;
}

.stat-card {
    background   : white;
    padding      : 50px 35px;
    border-radius: 35px;
    text-align   : center;
    border       : 5px solid;
    position     : relative;
    overflow     : hidden;
    box-shadow   : var(--shadow-md);
    transition   : all 0.4s ease;
}

.stat-card:nth-child(1) {
    border-color: var(--pastel-mint);
}

.stat-card:nth-child(2) {
    border-color: var(--pastel-pink);
}

.stat-card:nth-child(3) {
    border-color: var(--pastel-lavender);
}

.stat-card::before {
    content      : '';
    position     : absolute;
    top          : -80px;
    right        : -80px;
    width        : 200px;
    height       : 200px;
    border-radius: 50%;
    opacity      : 0.1;
}

.stat-card:nth-child(1)::before {
    background: var(--pastel-mint);
}

.stat-card:nth-child(2)::before {
    background: var(--pastel-pink);
}

.stat-card:nth-child(3)::before {
    background: var(--pastel-lavender);
}

.stat-card:hover {
    transform : scale(1.05);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    font-size    : 3.5rem;
    margin-bottom: 20px;
}

.stat-number {
    font-family  : 'Fredoka', sans-serif;
    font-size    : 4rem;
    font-weight  : 600;
    color        : var(--text-dark);
    margin-bottom: 15px;
    position     : relative;
}

.stat-label {
    font-size  : 1.15rem;
    color      : var(--text-medium);
    line-height: 1.6;
}

/* ============================================
   ANIMAL CARDS
   ============================================ */
.animal-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap                  : 40px;
    margin-top           : 60px;
}

.animal-card {
    background   : white;
    border-radius: 40px;
    overflow     : hidden;
    box-shadow   : var(--shadow-md);
    transition   : all 0.4s ease;
    border       : 5px solid var(--pastel-cream);
}

.animal-card:hover {
    transform : translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.animal-header {
    background: var(--pastel-peach);
    padding   : 30px;
    text-align: center;
    position  : relative;
}

.animal-icon {
    font-size    : 5rem;
    margin-bottom: 15px;
    display      : block;
}

.animal-header h3 {
    font-size    : 2rem;
    margin-bottom: 10px;
}

.animal-badge {
    display      : inline-block;
    padding      : 8px 20px;
    background   : white;
    border-radius: 20px;
    font-size    : 0.9rem;
    font-weight  : 600;
    color        : var(--text-dark);
    margin-top   : 10px;
}

.animal-body {
    padding: 35px;
}

.animal-body h4 {
    font-size: 1.3rem;
    margin   : 25px 0 15px 0;
    color    : var(--cute-coral);
}

.animal-body ul {
    margin-left: 25px;
}

.animal-body li {
    margin   : 10px 0;
    font-size: 1.05rem;
}

.animal-body p {
    line-height: 1.7;
    margin     : 15px 0;
}

.warning-badge {
    background   : var(--cute-coral);
    color        : white;
    padding      : 12px 25px;
    border-radius: 25px;
    display      : inline-block;
    margin-top   : 20px;
    font-weight  : 600;
}

/* ============================================
   QUIZ SECTION
   ============================================ */
.quiz-container {
    background   : white;
    padding      : 60px;
    border-radius: 45px;
    margin-top   : 50px;
    border       : 6px solid var(--pastel-lavender);
    box-shadow   : var(--shadow-lg);
    position     : relative;
}

.quiz-intro {
    background   : var(--pastel-peach);
    padding      : 40px;
    border-radius: 30px;
    text-align   : center;
    margin-bottom: 50px;
    border       : 4px solid var(--cute-coral);
}

.quiz-intro h3 {
    font-size    : 2rem;
    margin-bottom: 15px;
}

.quiz-intro p {
    font-size  : 1.2rem;
    line-height: 1.7;
}

.progress-container {
    margin-bottom: 50px;
}

.progress-label {
    text-align   : center;
    font-size    : 1.2rem;
    margin-bottom: 15px;
    font-weight  : 600;
    font-family  : 'Fredoka', sans-serif;
}

.progress-bar {
    height       : 25px;
    background   : var(--pastel-cream);
    border-radius: 25px;
    overflow     : hidden;
    border       : 4px solid var(--pastel-mint);
    position     : relative;
}

.progress-fill {
    height         : 100%;
    background     : var(--cute-mint);
    border-radius  : 25px;
    transition     : width 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position       : relative;
    display        : flex;
    align-items    : center;
    justify-content: flex-end;
    padding-right  : 15px;
}

.progress-paw {
    font-size: 1.2rem;
}

.question-card {
    background   : var(--pastel-cream);
    padding      : 45px;
    border-radius: 35px;
    margin-bottom: 35px;
    box-shadow   : var(--shadow-sm);
}

.question-header {
    display      : flex;
    align-items  : center;
    margin-bottom: 30px;
}

.question-number {
    display        : flex;
    align-items    : center;
    justify-content: center;
    width          : 60px;
    height         : 60px;
    background     : var(--cute-coral);
    color          : white;
    border-radius  : 50%;
    font-weight    : 600;
    font-size      : 1.5rem;
    margin-right   : 20px;
    box-shadow     : 0 6px 0 0 #FF7B7F;
    flex-shrink    : 0;
}

.question-text {
    font-size  : 1.4rem;
    font-weight: 600;
    line-height: 1.4;
}

.answers-container {
    display       : flex;
    flex-direction: column;
    gap           : 15px;
}

.answer-option label {
    display      : flex;
    align-items  : center;
    padding      : 22px 28px;
    background   : white;
    border       : 4px solid var(--pastel-cream);
    border-radius: 25px;
    cursor       : pointer;
    transition   : all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size    : 1.15rem;
    box-shadow   : var(--shadow-sm);
}

.answer-option input[type="radio"] {
    margin-right: 18px;
    transform   : scale(1.6);
    cursor      : pointer;
    accent-color: var(--cute-coral);
}

.answer-option label:hover {
    background  : var(--pastel-mint);
    border-color: var(--cute-mint);
    transform   : translateX(8px);
    box-shadow  : var(--shadow-md);
}

.answer-option label:has(input:checked) {
    background  : var(--cute-coral);
    color       : white;
    border-color: var(--cute-coral);
    font-weight : 600;
    transform   : scale(1.02);
    box-shadow  : 0 6px 0 0 #FF7B7F, var(--shadow-md);
}

.quiz-nav {
    display        : flex;
    justify-content: space-between;
    gap            : 20px;
    margin-top     : 40px;
}

/* ============================================
   RESULT BOX
   ============================================ */
.result-container {
    background   : white;
    padding      : 60px;
    border-radius: 45px;
    margin-top   : 50px;
    border       : 6px solid;
    box-shadow   : var(--shadow-xl);
    position     : relative;
}

.result-container.knockout {
    border-color: var(--cute-coral);
    background  : #FFF5F5;
}

.result-container.very-bad {
    border-color: #FFB5B5;
    background  : #FFF8F8;
}

.result-container.bad {
    border-color: var(--pastel-peach);
    background  : #FFFBF5;
}

.result-container.mediocre {
    border-color: var(--pastel-lavender);
    background  : #FAF8FF;
}

.result-container.okay {
    border-color: var(--cute-butter);
    background  : #FFFEF5;
}

.result-container.good {
    border-color: var(--cute-mint);
    background  : #F0FFF4;
}

.result-container.very-good {
    border-color: var(--pastel-mint);
    background  : #F0FFF8;
}

.result-container.perfect {
    border-color: var(--pastel-pink);
    background  : #FFF0F7;
}

.result-header {
    text-align   : center;
    margin-bottom: 40px;
}

.result-icon {
    font-size    : 8rem;
    margin-bottom: 25px;
    animation    : bounceIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display      : block;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.result-title {
    font-size    : 3rem;
    margin-bottom: 20px;
}

.result-score {
    font-family  : 'Fredoka', sans-serif;
    font-size    : 2.5rem;
    font-weight  : 600;
    margin-bottom: 30px;
}

.result-section {
    background   : white;
    padding      : 35px;
    border-radius: 30px;
    margin       : 25px 0;
    border-left  : 6px solid;
    box-shadow   : var(--shadow-sm);
}

.result-section.strengths {
    border-color: var(--cute-mint);
}

.result-section.issues {
    border-color: var(--cute-coral);
}

.result-section.recommendations {
    border-color: var(--pastel-lavender);
}

.result-section.animals {
    border-color: var(--pastel-pink);
}

.result-section h4 {
    font-size    : 1.6rem;
    margin-bottom: 20px;
    display      : flex;
    align-items  : center;
    gap          : 12px;
}

.result-section ul,
.result-section ol {
    margin: 15px 0 15px 30px;
}

.result-section li {
    margin     : 12px 0;
    font-size  : 1.1rem;
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--pastel-mint);
    padding   : 70px 30px;
    text-align: center;
    margin-top: 120px;
    border-top: 6px solid var(--cute-mint);
}

.footer-content {
    max-width: 800px;
    margin   : 0 auto;
}

.footer h3 {
    font-size    : 2rem;
    margin-bottom: 20px;
}

.footer p {
    color      : var(--text-dark);
    margin     : 15px 0;
    font-size  : 1.1rem;
    line-height: 1.7;
}

.footer a {
    color          : var(--text-dark);
    text-decoration: underline;
    font-weight    : 600;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top {
    position       : fixed;
    bottom         : 35px;
    right          : 35px;
    width          : 65px;
    height         : 65px;
    background     : var(--cute-coral);
    color          : white;
    border         : none;
    border-radius  : 50%;
    font-size      : 1.8rem;
    cursor         : pointer;
    opacity        : 0;
    visibility     : hidden;
    transition     : all 0.4s ease;
    box-shadow     : 0 6px 0 0 #FF7B7F, var(--shadow-lg);
    z-index        : 99;
    display        : flex;
    align-items    : center;
    justify-content: center;
}

.scroll-top.visible {
    opacity   : 1;
    visibility: visible;
}

.scroll-top:hover {
    transform : translateY(-8px);
    box-shadow: 0 10px 0 0 #FF7B7F, var(--shadow-xl);
}

.scroll-top:active {
    transform : translateY(0px);
    box-shadow: 0 2px 0 0 #FF7B7F, var(--shadow-sm);
}

/* ============================================
   CONTACT FORM 7 - TIERLIEBE STYLING
   ============================================ */
.cf7-tierliebe {
    max-width: 700px;
    margin   : 0 auto;
}

.cf7-tierliebe h3 {
    font-family   : var(--font-heading);
    font-size     : 1.4rem;
    color         : var(--text-dark);
    margin        : 30px 0 15px;
    padding-bottom: 10px;
    border-bottom : 2px solid var(--pastel-mint);
}

.cf7-tierliebe h3:first-child {
    margin-top: 0;
}

.cf7-tierliebe label {
    display      : block;
    margin-bottom: 20px;
    font-weight  : 500;
    color        : var(--text-dark);
}

.cf7-tierliebe input[type="text"],
.cf7-tierliebe input[type="email"],
.cf7-tierliebe textarea {
    width        : 100%;
    padding      : 15px 20px;
    border       : 2px solid var(--pastel-lavender);
    border-radius: 15px;
    font-family  : var(--font-body);
    font-size    : 1rem;
    margin-top   : 8px;
    transition   : border-color 0.3s ease, box-shadow 0.3s ease;
}

.cf7-tierliebe input:focus,
.cf7-tierliebe textarea:focus {
    outline   : none;
    border-color: var(--cute-coral);
    box-shadow: 0 0 0 4px rgba(255, 154, 158, 0.2);
}

.cf7-tierliebe textarea {
    min-height: 150px;
    resize    : vertical;
}

/* Radio Buttons */
.cf7-tierliebe .wpcf7-radio {
    display       : flex;
    flex-direction: column;
    gap           : 12px;
}

.cf7-tierliebe .wpcf7-list-item {
    margin: 0;
}

.cf7-tierliebe .wpcf7-radio .wpcf7-list-item label {
    display      : flex;
    align-items  : center;
    gap          : 12px;
    padding      : 15px 20px;
    background   : var(--pastel-cream);
    border-radius: 15px;
    cursor       : pointer;
    transition   : all 0.2s ease;
    margin-bottom: 0;
    font-weight  : 400;
}

.cf7-tierliebe .wpcf7-radio .wpcf7-list-item label:hover {
    background: var(--pastel-mint);
    transform : translateX(5px);
}

.cf7-tierliebe .wpcf7-list-item input[type="radio"] {
    width       : 20px;
    height      : 20px;
    accent-color: var(--cute-coral);
}

/* Checkboxen */
.cf7-tierliebe .wpcf7-checkbox {
    display  : flex;
    flex-wrap: wrap;
    gap      : 10px;
    margin-top: 10px;
}

.cf7-tierliebe .wpcf7-checkbox .wpcf7-list-item {
    flex: 0 0 auto;
}

.cf7-tierliebe .wpcf7-checkbox .wpcf7-list-item label {
    display      : flex;
    align-items  : center;
    gap          : 8px;
    padding      : 10px 18px;
    background   : var(--pastel-lavender);
    border-radius: 25px;
    font-size    : 0.95rem;
    cursor       : pointer;
    transition   : all 0.2s ease;
    margin-bottom: 0;
}

.cf7-tierliebe .wpcf7-checkbox .wpcf7-list-item label:hover {
    background: var(--pastel-pink);
}

.cf7-tierliebe .wpcf7-checkbox input[type="checkbox"] {
    width       : 18px;
    height      : 18px;
    accent-color: var(--cute-coral);
}

/* Datenschutz Checkbox */
.cf7-tierliebe .wpcf7-acceptance {
    margin: 20px 0;
}

.cf7-tierliebe .wpcf7-acceptance label {
    display      : flex;
    align-items  : flex-start;
    gap          : 12px;
    font-size    : 0.95rem;
    color        : var(--text-medium);
    margin-bottom: 0;
    font-weight  : 400;
}

.cf7-tierliebe .wpcf7-acceptance a {
    color          : var(--cute-coral);
    text-decoration: underline;
}

/* Submit Button */
.cf7-tierliebe .btn-tierliebe {
    display      : inline-block;
    padding      : 18px 40px;
    background   : linear-gradient(135deg, var(--cute-coral), var(--pastel-pink));
    color        : white;
    border       : none;
    border-radius: 30px;
    font-family  : var(--font-heading);
    font-size    : 1.1rem;
    font-weight  : 600;
    cursor       : pointer;
    transition   : all 0.3s ease;
    box-shadow   : 0 4px 15px rgba(255, 154, 158, 0.4);
}

.cf7-tierliebe .btn-tierliebe:hover {
    transform : translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 154, 158, 0.5);
}

/* Form Hint */
.cf7-tierliebe .form-hint {
    font-size : 0.9rem;
    color     : var(--text-medium);
    margin    : -10px 0 15px;
    font-style: italic;
}

/* Fehlermeldungen */
.cf7-tierliebe .wpcf7-not-valid-tip {
    color     : #e74c3c;
    font-size : 0.85rem;
    margin-top: 5px;
}

/* Erfolgsmeldung */
.cf7-tierliebe .wpcf7-response-output {
    padding      : 20px;
    border-radius: 15px;
    margin-top   : 20px;
    text-align   : center;
}

.cf7-tierliebe form.sent .wpcf7-response-output {
    background  : var(--pastel-mint);
    border-color: var(--cute-mint);
    color       : var(--text-dark);
}

/* ============================================
