/*
Theme Name:   Eventmanufaktur
Description:  Eventmanufaktur Theme
Author:       valyu
Author URI:   https://www.valyu.de
Template:     twentytwentyfive
Version:      1.0
Text Domain:  twentytwentyfive-child
*/

/* ==========================================================================
   1. BASE & RESET
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html, body {
    max-width: 100%!important;
    overflow-x: hidden;
    /* Hier darf nur EINE font-family stehen! */
    font-family: 'MarkOT', sans-serif;
}

/* 1. Die NORMALE Schrift */
@font-face {
    font-family: "MarkOT"; /* <-- Der Name ist "MarkOT" */
    src: url("/wp-content/themes/twentytwentyfive-child/fonts/MarkOT.ttf") format("truetype");
    font-weight: normal; /* Das ist der Trigger für normalen Text */
    font-style: normal;
    font-display: swap;
}

/* 2. Die FETTE Schrift */
@font-face {
    font-family: "MarkOT"; /* <-- WICHTIG: Hier muss auch "MarkOT" stehen! */
    src: url("/wp-content/themes/twentytwentyfive-child/fonts/mark-ot-bold.ttf") format("truetype");
    font-weight: 900; /* Das ist der Trigger für fette Überschriften */
    font-style: normal;
    font-display: swap;
}

.wpcf7, 
.form-section-wrapper .wpcf7 {
    margin-top: 0 !important;
    margin-block-start: 0 !important;
}

.wpcf7, 
.form-section-wrapper-private .wpcf7 {
    margin-top: 0 !important;
    margin-block-start: 0 !important;
}

/* ==========================================================================
   2. TYPOGRAPHY
   ========================================================================== */
h1 {
    font-size: 55px;
    font-weight: bold;
}

h2 {
    font-size: 30px;
    font-weight: bold;
}

h3 {
    font-size: 25px;
    font-weight: lighter;
}

p {
    font-size: 20px;
    font-weight: lighter;
    color: #532950;
}

ul {
    font-size: 20px;
    font-weight: lighter;
    color: #532950;
}

@media (max-width: 900px) {
h1 { font-size: 47px; } /* 35pt umgerechnet (exakt 46,67px) */
    h2 { font-size: 35px; } /* 30pt umgerechnet */
    h3 { font-size: 20px; } /* 15pt umgerechnet */
    p { font-size: 20px; }  /* 15pt umgerechnet */
}

/* ==========================================================================
   3. GLOBAL COMPONENTS (Buttons etc.)
   ========================================================================== */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary:focus{outline:none;}
.btn-secondary:focus{outline:none;}

.btn-primary {
    background-color: #ffffff;
    color: #4a2c50;
    font-size: 18px;
}

.btn-primary:hover {
    background-color: #f4e8c1;
    color: #4a2c50;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: #4a2c50;
    color: #ffffff;
	font-size:18px;

}

.btn-secondary:hover {
    background-color: #d6c698;
    color: #4a2c50;
    transform: scale(1.05);
}

/* ==========================================================================
   4. NAVIGATION (Navbar)
   ========================================================================== */
.navbar {
    background-color: #4a2c50;
    height: 80px;
    width: 100%;
    position: fixed;
    box-sizing: border-box;
    top: 0;
    left: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 50px;
    z-index: 1000;
    transition: transform 0.3s ease-in-out; 
}

/* --- Unterstreichung für die aktuelle Seite in der Navigation --- */
/* --- Unterstreichung für aktive Seite UND beim Hovern --- */
.nav-links a.active,
.nav-links a:hover {
    text-decoration: underline;
    text-decoration-color: #ffffff;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px!important;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.logo-container {
    position: absolute;
    left: 10%;
    top: 0;
    background-color: #4a2c50;
    padding: 20px;
    height: 150px;
    width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    transition: all 0.4s ease-in-out; 
}

.logo-container img, .logo-container svg {
    max-width: 90px; /* Hier war vorher 60px. Falls es noch größer sein soll, kannst du hier auch 100px eintragen! */
    margin-bottom: 5px;
    transition: all 0.4s ease-in-out;
}

.logo-text {
    font-weight: bold;
    font-size: 15px;
    line-height: 1.1;
    letter-spacing: 1px;
    transition: all 0.4s ease-in-out;
}

.logo-subtext {
    font-size: 11px;
    font-weight: normal;
    transition: all 0.4s ease-in-out;
}

.navbar.scrolled .logo-container {
    height: 80px;
    width: 110px;
    padding: 5px;
    box-shadow: none; 
}

.navbar.scrolled .logo-container img, .navbar.scrolled .logo-container svg {
    max-width: 45px; /* Hier war vorher 30px */
    margin-bottom: 2px;
}

.navbar.scrolled .logo-text { font-size: 12px; }
.navbar.scrolled .logo-subtext { font-size: 9px; }

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li { display: inline; }

.nav-links a {
    color: white;
    text-decoration: none; /* Entfernt Standard-Unterstriche */
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 5px;
    transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 0.8; }

.current-menu-item > a { 
    text-decoration: underline;
    text-decoration-color: #ffffff;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s;
}


@media (max-width: 900px) {
    .navbar {
        padding: 0 20px;
        justify-content: space-between;
    }

    .logo-container {
        left: 20px;
        height: 110px;
        width: 100px;
        padding: 10px;
    }

    .navbar.scrolled .logo-container {
        height: 80px;
        width: 90px;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #4a2c50;
        flex-direction: column;
        align-items: center;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .nav-links.show { max-height: 400px; }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.05);
    }

    .nav-links a {
        display: inline-block; /* Geändert von block auf inline-block für bessere Unterstrich-Optik zentriert */
        padding: 15px;
    }
}

/* ==========================================================================
   5. FOOTER
   ========================================================================== */

/* --- Klickbare Kontakt-Links im Footer --- */
.footer-contact-links a {
    color: inherit; /* Die Links nehmen automatisch die Textfarbe deines Footers an */
    text-decoration: none; /* Entfernt die dauerhafte Unterstreichung */
    transition: opacity 0.3s ease;
	font-size:15px;
}

/* Hover-Effekt: Wenn man mit der Maus drüberfährt */
.footer-contact-links a:hover {
    opacity: 0.7; /* Der Text wird leicht transparent */
    text-decoration: underline; /* Eine edle Unterstreichung taucht auf */
    text-underline-offset: 4px; /* Mit etwas Abstand zum Text */
}

.custom-footer {
    background-color: #4a2c50;
    color: #ffffff;
    padding: 60px 80px;
    font-family: 'Mark ot', sans-serif;
    display: grid;
    grid-template-areas:
        "nav logo"
        "divider divider"
        "bottom bottom";
    grid-template-columns: 1fr auto;
    align-items: center;
    row-gap: 40px;
    box-sizing: border-box;
    width: 100%;
}

.custom-footer a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.custom-footer a:hover { opacity: 0.7; }

.footer-nav {
    grid-area: nav;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 40px;
    max-width: 500px;
}

.footer-nav a {
    font-weight: bold;
    font-size: 16px;
}

.footer-logo {
    grid-area: logo;
    justify-self: end;
}

.footer-logo svg {
    max-width: 115px;
    height: auto;
}

.footer-divider {
    grid-area: divider;
    border: none;
    border-top: 1px solid #ffffff;
    width: 100%;
    margin: 0;
}

.footer-bottom {
    grid-area: bottom;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-contact p {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: normal;
    color: #fff;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-weight: bold;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .custom-footer {
        padding: 40px 30px;
        display: flex;
        flex-direction: column;
        gap: 40px;
		align-items:flex-start;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        order: 1;
    }

    .footer-divider { order: 2; }

    .footer-bottom {
        order: 3;
        flex-direction: column;
        gap: 40px;
    }

    .footer-legal { flex-direction: column-reverse; }
    .social-ig { order: 1; }
    .social-fb { order: 2; }

    .footer-logo {
        order: 4;
        align-self: center;
        margin-top: 10px;
    }
}

/* ==========================================================================
   CONTACT FORM 7 - SCHWEBENDES POP-UP (Modal)
   ========================================================================== */

/* Das Haupt-Pop-up-Fenster */
.wpcf7 form .wpcf7-response-output {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 99999 !important; /* Ganz nach vorne holen */
    
    width: 90% !important;
    max-width: 450px !important;
    padding: 40px 30px !important;
    margin: 0 !important;
    
    border-radius: 20px !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3) !important; /* Schöner Schatten */
    
    font-size: 20px !important;
    font-weight: bold !important;
    text-align: center !important;
    border: 2px solid transparent !important;
    
    /* Animation für weiches Einblenden */
    animation: popIn 0.3s ease-out forwards !important;
}

/* 1. ERFOLG: Nachricht wurde erfolgreich gesendet */
.wpcf7 form.sent .wpcf7-response-output {
    background-color: #d6c698 !important;
    color: #4a2c50 !important;
    border-color: #4a2c50 !important;
}

/* 2. FEHLER / SPAM: Pflichtfelder vergessen oder blockiert */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
    background-color: #ffffff !important;
    color: #dc3232 !important;
    border-color: #dc3232 !important;
}

/* Der generierte Close-Button (X) */
.em-close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    font-weight: normal;
    transition: transform 0.2s;
}

.wpcf7 form.sent .em-close-popup { color: #4a2c50; }
.wpcf7 form.invalid .em-close-popup, .wpcf7 form.failed .em-close-popup { color: #dc3232; }

.em-close-popup:hover {
    transform: scale(1.2);
}

/* Keyframes für das Einfliegen */
@keyframes popIn {
    0% { opacity: 0; transform: translate(-50%, -45%); }
    100% { opacity: 1; transform: translate(-50%, -50%); }
}

/* ==========================================================================
   SPEZIFISCHE STYLES FÜR DAS HOMEPAGE-FORMULAR
   ========================================================================== */

.direct-contact-info{
margin-top:50px;
}

.direct-contact-info h3{
color:#4a2c50;
	margin-bottom:10px;
}

/* --- Styling für den Whatsapp-Button --- */
.whatsapp-link {
    margin-top: 15px; /* Etwas Abstand zum normalen Textblock */
    display: flex; /* Sorgt dafür, dass Icon und Text in EINER Zeile bleiben */
    align-items: center; /* Zentriert beides auf gleicher Höhe */
    gap: 10px; /* Der Abstand zwischen dem SVG-Icon und der Nummer */
    color: #482a3d;
}

/* Verhindert, dass das SVG zu groß wird oder blockiert */
.whatsapp-link span,
.whatsapp-link svg {
    display: inline-flex;
    flex-shrink: 0; /* Verhindert, dass das Icon auf kleinen Bildschirmen gequetscht wird */
    width: 30px;
}

/* Grauer Hintergrund für die Startseite */
.home-form-wrapper {
    background-color: #d1d1d1 !important;
}

/* --- B2C / B2B Layout --- */
.em-event-toggle-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.em-event-line {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.em-event-line p {
    display: contents !important; /* Neutralisiert WP-Absätze */
}

/* Das Label für die Radio-Buttons (B2C/B2B Text) */
.em-event-line .radio-label {
flex: 0 0 130px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    cursor: pointer;
    font-weight: normal !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #4a2c50 !important;
}

.em-event-line .dropdown-wrap {
    flex: 1;
}

.em-event-line input[type="radio"] {
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
}

/* Da die rechte Seite durch die 2 Dropdowns höher ist, bleibt "Art der Veranstaltung" oben stehen */
.em-form-group.align-top {
    align-items: flex-start !important;
}

.em-form-group.align-top > label {
    padding-top: 15px; /* Bringt das Label auf eine exakte Linie mit dem ersten B2C-Dropdown */
}

@media (max-width: 900px) {
    .em-form-group.align-top > label {
        padding-top: 0; 
    }
}

/* ==========================================================================
   6. THEME OVERRIDES & FIXES
   ========================================================================== */
.entry-content.is-layout-constrained > .hero-section {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

.has-global-padding {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

main.wp-block-group {
    margin-top: 0 !important;
}

main.wp-block-group > div.wp-block-group {
    padding-top: 0 !important;
}


/* ==========================================================================
   FORMULAR GLOBALE EINSTELLUNGEN
   ========================================================================== */
.form-section-wrapper {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-color: #d6c698;
    padding: 80px 20px;
    box-sizing: border-box;
    margin-top: 0 !important;
}



.form-section-wrapper-private {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-color: #ccc;
    padding: 80px 20px;
    box-sizing: border-box;
    margin-top: 0 !important;
}


.headline-form {
    text-align: center;
    color: #4a2c50;
    margin-bottom: 60px;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.em-flex-form {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

/* Störende Auto-P-Tags von WordPress bändigen */
.em-flex-form p {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
	font-size:18px;
}

/* ==========================================================================
   SPALTEN & EXAKTE AUSRICHTUNG
   ========================================================================== */
.em-col-left {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Abstand zwischen den Reihen */
}

.em-col-right {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.em-form-group {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    width: 100% !important;
}

/* Das Label hat immer exakt die gleiche Breite (200px) */
.em-form-group > label {
    flex: 0 0 200px !important;
    font-weight: bold !important;
    color: #4a2c50 !important;
    margin: 0 !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
}

/* Die Box für die Eingabefelder füllt immer den exakten Rest aus */
.em-input-box {
    flex: 1 1 auto !important;
    width: 100% !important;
}

/* ==========================================================================
   EINGABEFELDER STYLING (Alle exakt 48px hoch)
   ========================================================================== */
.em-input-box .wpcf7-form-control-wrap {
    display: block !important;
    width: 100% !important;
}

.em-input-box input[type="text"],
.em-input-box input[type="email"],
.em-input-box input[type="date"],
.em-input-box input[type="number"],
.em-input-box select {
    width: 100% !important;
    height: 48px !important;
    padding: 0 15px !important;
    border: none !important;
    background-color: #ffffff !important;
    color: #4a2c50 !important;
    box-sizing: border-box !important;
    font-size: 16px !important;
    font-family: inherit !important;
    margin: 0 !important;
}

/* ==========================================================================
   UHRZEIT- & RADIO-FIX (Erzwingt Einzeiligkeit)
   ========================================================================== */
.em-time-box {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 15px !important;
    flex-wrap: nowrap !important; /* Kein Umbruch! */
}
/* Radiert unsichtbare WP-Absätze aus */
.em-time-box p, 
.location-radio-box p {
    display: contents !important; 
}
.em-time-box span {
    color: #4a2c50 !important;
    white-space: nowrap !important;
}
/* Nimmt den Uhrzeitfeldern die 100% Breite, damit sie nebeneinander passen */
.em-time-box .wpcf7-form-control-wrap {
    width: auto !important; 
    flex: 1 !important;
}

.location-radio-box .wpcf7-form-control {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 20px !important;
    margin: 0 !important;
    flex-wrap: nowrap !important;
}
.location-radio-box .wpcf7-list-item {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    margin: 0 !important;
    color: #4a2c50 !important;
    white-space: nowrap !important;
	font-size:20px;
}
/* Radio Buttons nicht verzerren */
.location-radio-box input[type="radio"] {
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
}

/* ==========================================================================
   TEXTAREA & BUTTON
   ========================================================================== */
.em-col-right .wpcf7-form-control-wrap {
    height: 100%;
}

.wpcf7-list-item {
margin:0;
}

.em-col-right textarea {
    width: 100% !important;
    height: 99% !important;
    padding: 15px !important;
    border: none !important;
    background-color: #ffffff !important;
    resize: none !important;
    box-sizing: border-box !important;
    color: #4a2c50 !important;
    font-size: 16px !important;
    margin: 0 0 15px 0px;
}

.btn-submit {
    background-color: #ffffff !important;
    color: #4a2c50 !important;
    padding: 15px 40px !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: bold !important;
    cursor: pointer;
    align-self: flex-start;
    font-size: 16px !important;
}

/* Rote Fehlermeldungen drunter schieben */
span.wpcf7-not-valid-tip {
    font-size: 13px !important;
    margin-top: 5px !important;
    color: #dc3232 !important;
    display: block !important;
}

/* ==========================================================================
   RESPONSIVE DESIGN (Handy)
   ========================================================================== */
@media (max-width: 900px) {
    .em-col-left, .em-col-right {
        flex: 1 1 100%;
    }
    .em-form-group {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 5px !important;
    }
    .em-form-group > label {
        flex: auto !important;
        width: 100% !important;
    }
    /* Erlaubt auf winzigen Bildschirmen einen Umbruch für die Radios */
    .location-radio-box .wpcf7-form-control {
        flex-wrap: wrap !important;
    }
	
	.form-section-wrapper {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-color: #d6c698;
    padding: 100px 20px 120px 20px;
    box-sizing: border-box;
    margin-top: 0 !important;
}
}

/* ==========================================================================
   LÜCKE ZWISCHEN CONTENT UND FOOTER SCHLIESSEN
   ========================================================================== */

/* Entfernt den automatischen Abstand am Ende des Haupt-Contents */
.entry-content {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Zwingt den allerletzten Block auf der Seite, seinen Abstand nach unten aufzugeben */
.entry-content > *:last-child {
    margin-bottom: 0 !important;
    margin-block-end: 0 !important;
}

/* Zur Sicherheit: Falls der Footer selbst einen Abstand nach oben drückt */
.custom-footer {
    margin-top: 0 !important;
}

/* Globaler Fix gegen WordPress-Standardabstände am Ende des Inhalts */
.entry-content,
.wp-block-group.is-layout-flow,
.wp-block-group.alignfull {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Entfernt den Abstand des allerletzten Elements vor dem Footer */
.entry-content > *:last-child {
    margin-bottom: 0 !important;
    margin-block-end: 0 !important;
}

.wpa-test-msg {
    display: none !important;
}

main#wp--skip-link--target,
.wp-block-group.is-layout-flow,
.wp-site-blocks {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    gap: 0 !important; /* Entfernt Lücken zwischen Blöcken */
}

/* 2. Entfernt den erzwungenen Abstand des Inhalts-Containers */
.entry-content.alignfull {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* 3. Stellt sicher, dass nach der letzten Sektion nichts mehr kommt */
section.funnel-section:last-of-type {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* 4. Verhindert, dass WordPress leere Absätze am Ende einfügt */
p:empty {
    display: none !important;
    margin: 0 !important;
}

/* ==========================================================================
   SICHTBARKEITSKLASSEN (DESKTOP / MOBILE ONLY)
   ========================================================================== */

/* Versteckt das Element auf Bildschirmen kleiner als 768px (Handys & kleine Tablets) */
@media (max-width: 767px) {
    .desktop-only {
        display: none !important;
    }
}

/* Versteckt das Element auf Bildschirmen ab 768px (Große Tablets & Desktop) */
@media (min-width: 768px) {
    .mobile-only {
        display: none !important;
    }
}

/* ==========================================================================
Sticky Bubble
========================================================================== */

/* --- Der schwebende Kontakt-Button --- */
.sticky-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    background-color: #ffffff;
    border: 3px solid #4a2c50; /* Euer Lila */
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 99999; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.sticky-bubble svg {
    width: 32px;
    height: 32px;
    stroke: #4a2c50;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.sticky-bubble span {
    color: #4a2c50;
    text-align: center;
    line-height: 1.1;
    font-weight: bold;
    font-size: 11px !important; 
    transition: all 0.3s ease;
}

.sticky-bubble:hover {
    transform: scale(1.05) translateY(-5px);
    background-color: #D1C18A;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.sticky-bubble:hover svg { stroke: #ffffff; }

@media (max-width: 768px) {
    .sticky-bubble { bottom: 20px; right: 20px; width: 80px; height: 80px; }
    .sticky-bubble svg { width: 24px; height: 24px; }
    .sticky-bubble span { font-size: 9px !important; }
}