/* Oceanic Bliss Zeitmanagement – style.css */
/* CSS RESET & BASE STYLES */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, menu, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}
html {
    line-height: 1.5;
    scroll-behavior: smooth;
    background: #fff;
}
body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    color: #17496d;
    background: #fafdff;
    min-height: 100vh;
}
:root {
    --primary: #17496d;
    --secondary: #61a6c8;
    --accent: #ffeee5;
    --playful-yellow: #ffe066;
    --playful-orange: #ff8b53;
    --playful-coral: #ff5d81;
    --card-bg: #fff;
}
*, *:before, *:after {
    box-sizing: inherit;
}
a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: var(--playful-coral);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
    font-weight: 800;
    letter-spacing: 0.01em;
}
h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
    line-height: 1.18;
}
h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--playful-orange);
    line-height: 1.2;
}
h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 10px;
}
h4, h5, h6 {
    color: var(--primary);
    margin-bottom: 6px;
}
p, li, ul, ol, blockquote {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #17496d;
    font-size: 1rem;
    margin-bottom: 12px;
    line-height: 1.65;
}
.subheadline {
    font-size: 1.25rem;
    color: var(--secondary);
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.4;
    margin-bottom: 24px;
    font-weight: 700;
}
strong {
    font-weight: bold;
}
blockquote {
    padding: 18px 28px;
    border-left: 6px solid var(--playful-coral);
    background: #f8faff;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 30px;
    border-radius: 0 16px 16px 0;
}

/* HEADERS & NAVIGATION */
header {
    background: var(--accent);
    box-shadow: 0 2px 20px rgba(97,166,200,0.09);
}
.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    padding: 12px 0;
    width: 100%;
}
.main-nav img {
    height: 54px;
    width: auto;
    margin-right: 24px;
}
.main-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    list-style: none;
    align-items: center;
}
.main-nav li {
    margin: 0;
}
.main-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    color: var(--primary);
    padding: 8px 10px;
    border-radius: 18px;
    transition: background 0.18s, color 0.18s;
    font-size: 1rem;
}
.main-nav a:hover, .main-nav a:focus {
    background: var(--playful-yellow);
    color: var(--playful-coral);
}
.cta-btn {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    background: var(--playful-orange);
    color: #fff;
    border: none;
    border-radius: 32px;
    padding: 14px 32px;
    font-size: 1.15rem;
    box-shadow: 0 6px 18px rgba(255,94,129,0.10);
    outline: none;
    cursor: pointer;
    margin-left: 24px;
    transition: background 0.15s, transform 0.2s, box-shadow 0.15s;
    letter-spacing: .02em;
    position: relative;
    z-index: 2;
}
.cta-btn:hover, .cta-btn:focus {
    background: var(--playful-coral);
    color: #fff;
    transform: translateY(-2px) scale(1.05) rotate(-2deg);
    box-shadow: 0 10px 32px rgba(255,140,83,0.19);
}

/* MOBILE MENU */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 24px;
    right: 22px;
    background: var(--secondary);
    color: #fff;
    border: none;
    font-size: 2.2rem;
    border-radius: 10px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 4px 16px rgba(23,73,109,0.14);
    transition: background 0.18s, transform 0.17s;
}
.mobile-menu-toggle:active {
    background: var(--playful-yellow);
    color: var(--playful-coral);
    transform: scale(0.96);
}
.mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--accent);
    z-index: 2000;
    transform: translateX(-100vw);
    transition: transform 0.35s cubic-bezier(.76,.3,.29,.99);
    padding: 32px 24px 24px 32px;
    box-shadow: 2px 0 22px 0 rgba(23,73,109,0.12);
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-menu-close {
    font-size: 2.4rem;
    border: none;
    background: none;
    color: var(--primary);
    position: relative;
    margin-left: auto;
    margin-bottom: 18px;
    cursor: pointer;
    z-index: 3;
    transition: color 0.14s;
}
.mobile-menu-close:hover {
    color: var(--playful-coral);
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 18px;
    width: 100%;
    align-items: flex-start;
}
.mobile-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.28rem;
    color: var(--primary);
    font-weight: 700;
    padding: 10px 0;
    border-radius: 14px;
    width: 100%;
    transition: background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
    background: var(--playful-yellow);
    color: var(--playful-coral);
}

/* MAIN LAYOUT & SECTIONS */
main {
    width: 100%;
    flex: 1 1 auto;
    background: #fff;
}
.section {
    margin-bottom: 60px;
    padding: 40px 20px;
    background: transparent;
}
.content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}
.hero {
    background: linear-gradient(95deg, var(--accent) 70%, #ffe066 100%);
    position: relative;
    z-index: 1;
    padding: 60px 0 44px 0;
    border-radius: 0 0 28px 28px;
    box-shadow: 0 12px 28px rgba(255,238,229,0.16) inset;
}
.hero .content-wrapper {
    align-items: flex-start;
}
.hero h1 {
    color: var(--playful-coral);
    letter-spacing: 0.02em;
    text-shadow: 1px 0 5px #ffe06664;
    font-family: 'Montserrat', Arial, sans-serif;
}

/* FEATURES & ICON ROWS */
.features {
    background: #fafdff;
    border-radius: 24px;
    margin-top: 28px;
    box-shadow: 0 0 20px rgba(97,166,200,0.05);
}
.feature-grid, .feature-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    align-items: stretch;
}
.feature-grid > div, .feature-icons > div {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 2px 10px 0 rgba(97,166,200,0.055);
    padding: 26px 22px 22px 22px;
    min-width: 230px;
    flex: 1 1 230px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    transition: box-shadow 0.20s, transform 0.15s;
    position: relative;

    /* Playful floating animation */
    animation: cardFloat 3.2s ease-in-out infinite alternate;
}
@keyframes cardFloat {
  0% {
    transform: translateY(0) rotate(-2deg);
  }
  100% {
    transform: translateY(-8px) rotate(2deg);
  }
}
.feature-grid > div:hover, .feature-icons > div:hover {
    box-shadow: 0 10px 22px 0 rgba(255,140,83,0.17);
    transform: translateY(-6px) scale(1.04) rotate(-2deg);
}
.feature-grid img, .feature-icons img {
    height: 44px;
    margin-bottom: 10px;
    filter: drop-shadow(0 1px 2px #ffe06650);
}

/* SERVICES/CARDS */
.services {
    background: #fafdff;
    border-radius: 24px;
}
.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
    align-items: stretch;
}
.service-cards > div {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 12px 0 rgba(255,94,129,0.09);
    padding: 28px 22px 22px 22px;
    min-width: 220px;
    flex: 1 1 220px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 20px;
    transition: box-shadow 0.20s, transform 0.14s;
    border: 2px solid #ffe06600;
    position: relative;
    animation: cardSwing 4s infinite alternate cubic-bezier(0.66,0,0.34,1);
}
@keyframes cardSwing {
    0% { transform: rotate(-1.6deg); }
    100% { transform: rotate(2deg); }
}
.service-cards > div:hover {
    box-shadow: 0 12px 28px 0 rgba(255,140,83,0.15);
    transform: scale(1.042) translateY(-6px) rotate(-1deg);
    border: 2px solid var(--playful-yellow);
}
.service-cards h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--playful-orange);
    margin-bottom: 5px;
}
.service-cards span {
    margin-top: 12px;
    font-weight: 900;
    color: var(--playful-coral);
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: .01em;
}

/* CARD CONTAINERS & GRIDS */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.card {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 2px 10px rgba(255,224,102,0.09);
    padding: 28px 20px 24px 20px;
    transition: box-shadow 0.17s, transform 0.13s;
}
.card:hover {
    box-shadow: 0 12px 26px rgba(97,166,200,0.14);
    transform: translateY(-4px) scale(1.03) rotate(1.2deg);
}

/* TEXT/IMAGE FLEX SECTION */
.text-image-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.text-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 24px;
}

/* TESTIMONIALS */
.testimonials {
    background: var(--playful-yellow);
    border-radius: 22px;
}
.testimonial-slider, .testimonial-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 18px;
    justify-content: flex-start;
    width: 100%;
}
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 16px rgba(23,73,109,0.06);
    border-radius: 18px;
    max-width: 340px;
    min-width: 240px;
    margin-bottom: 20px;
    color: #17496d;
    font-size: 1rem;
    font-family: 'Open Sans', Arial, sans-serif;
    position: relative;
    transition: box-shadow 0.18s, transform 0.15s;
    border: 2.5px solid #ffeee5;
}
.testimonial-card strong {
    color: var(--playful-orange);
    font-weight: bold;
}
.testimonial-card p {
    color: #17496d;
    font-size: 1.02rem;
    font-style: italic;
}
.testimonial-card span, .testimonial-card div {
    color: #17496d;
    font-size: 0.99rem;
    font-style: normal;
}
.testimonial-card:after {
    content: '”';
    color: var(--playful-coral);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 3rem;
    position: absolute;
    right: 18px;
    bottom: 12px;
    opacity: 0.15;
    pointer-events: none;
}
.testimonial-card:hover {
    box-shadow: 0 12px 32px rgba(255,93,129,0.11);
    border-color: var(--playful-yellow);
    transform: translateY(-4px) scale(1.045);
}
.before-after-stories {
    background: var(--accent);
    color: var(--primary);
    border-radius: 14px;
    padding: 18px 17px;
    margin-top: 14px;
    font-family: 'Montserrat', Arial, sans-serif;
}
.before-after-stories strong {
    color: var(--playful-orange);
}

/* TABLES */
table {
    border-collapse: collapse;
    width: 100%;
    background: #fff;
    margin-bottom: 22px;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(97,166,200,0.06);
    overflow: hidden;
}
thead {
    background: var(--secondary);
    color: #fff;
}
th, td {
    text-align: left;
    padding: 12px 14px;
    font-size: 1rem;
    border-bottom: 1px solid #e0eaf3;
}
th {
    font-family: 'Montserrat', Arial, sans-serif;
}
tr:last-child td {
    border-bottom: none;
}

/* LEGAL/TEXT PAGES */
.legal {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 2px 22px rgba(97,166,200,0.045);
    padding: 36px 0;
    margin-bottom: 60px;
}
.legal h1, .legal h2, .legal h3 {
    color: var(--primary);
}
.legal h2 {
    margin-top: 22px;
    color: var(--playful-coral);
}
.legal ul, .legal ol {
    margin-left: 20px;
    margin-bottom: 20px;
    padding-left: 15px;
}

/* FOOTER */
footer {
    background: var(--primary);
    color: #fff;
    border-radius: 24px 24px 0 0;
    margin-top: 56px;
    padding: 24px 0 0 0;
    box-shadow: 0 -2px 20px rgba(23,73,109,0.10) inset;
}
.footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 14px;
    gap: 20px;
}
.footer-nav img {
    height: 42px;
    width: auto;
}
.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
}
.footer-nav li {
    margin: 0;
}
.footer-nav a {
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    padding: 6px 10px;
    border-radius: 12px;
    transition: background 0.15s, color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
    background: var(--playful-coral);
    color: #fff;
}
.footer-brand {
    text-align: right;
    color: #fff;
    font-size: 0.92rem;
    font-family: 'Montserrat', Arial, sans-serif;
    opacity: .71;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    background: #fff6d7;
    color: #17496d;
    box-shadow: 0 -2px 20px rgba(255,224,102,0.09);
    z-index: 5005;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 12px 22px 12px;
    gap: 24px;
    font-size: 1rem;
    font-family: 'Open Sans', Arial, sans-serif;
    transition: transform 0.3s cubic-bezier(.76,.3,.29,.99);
    transform: translateY(0);
}
.cookie-banner.hide {
    transform: translateY(150%);
}
.cookie-banner-content {
    flex: 1 1 400px;
    max-width: 440px;
}
.cookie-banner-buttons {
    display: flex;
    gap: 17px;
    align-items: center;
}
.cookie-btn {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    background: var(--playful-yellow);
    color: var(--primary);
    border: none;
    border-radius: 26px;
    padding: 10px 24px;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(255,224,102,0.13);
    transition: background 0.12s, color 0.12s;
}
.cookie-btn.accept {
    background: var(--playful-orange);
    color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
    background: var(--playful-coral);
}
.cookie-btn.reject {
    background: #fff;
    color: var(--playful-coral);
    border: 2px solid var(--playful-coral);
}
.cookie-btn.reject:hover {
    background: var(--playful-coral);
    color: #fff;
}
.cookie-btn.settings {
    background: #fff6d7;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
    background: var(--playful-yellow);
    color: var(--primary);
}

/* COOKIE MODAL */
.cookie-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) scale(0.88);
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 8px 40px rgba(23,73,109,0.23);
    z-index: 7000;
    min-width: 320px;
    max-width: 98vw;
    width: 425px;
    padding: 36px 30px 24px 30px;
    display: flex;
    flex-direction: column;
    gap: 26px;
    opacity: 1;
    transition: transform 0.40s cubic-bezier(.76,.3,.29,.99), opacity 0.22s;
    will-change: transform, opacity;
    pointer-events: all;
}
.cookie-modal.hide {
    opacity: 0;
    transform: translate(-50%,60%) scale(0.8);
    pointer-events: none;
}
.cookie-modal h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--playful-coral);
    margin-bottom: 8px;
    font-size: 1.3rem;
    font-weight: 800;
}
.cookie-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fafdff;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 12px;
    font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-category .cookie-switch {
    display: flex;
    align-items: center;
    gap: 8px;
}
.cookie-switch input[type="checkbox"] {
    accent-color: var(--secondary);
    width: 28px;
    height: 18px;
    cursor: pointer;
    border-radius: 14px;
    transition: accent-color 0.18s;
}
.cookie-switch input[type="checkbox"][disabled] {
    opacity: 0.5;
    pointer-events: none;
}
.cookie-modal-controls {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
}
.cookie-modal .cookie-btn {
    min-width: 120px;
}

/* SPACING & UTILITIES */
.card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}
.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
.address-map {
    margin: 18px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.opening-hours {
    font-size: 1.0rem;
    color: var(--playful-coral);
    margin-top: 16px;
    font-family: 'Montserrat', Arial, sans-serif;
}

/* ANIMATIONS */
a, button, .cta-btn, .cookie-btn, .cookie-modal, .main-nav a, .service-cards > div  {
    transition: background 0.18s, color 0.13s, box-shadow 0.17s, transform 0.15s;
}
.menu-slide-in {
    animation: menuSlideIn 0.45s cubic-bezier(.76,.3,.29,.99);
}
@keyframes menuSlideIn {
    from { transform: translateX(-100vw); }
    to { transform: translateX(0); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1070px) {
    .main-nav ul {
        gap: 12px;
    }
    .service-cards, .feature-grid, .content-grid, .feature-icons, .testimonial-slider, .testimonial-blocks {
        gap: 16px;
    }
}
@media (max-width: 900px) {
    .container { padding: 0 8px; }
    .service-cards > div, .feature-grid > div, .feature-icons > div, .card, .testimonial-card {
        min-width: 171px;
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    h1 { font-size: 2.0rem; }
    h2 { font-size: 1.6rem; }
    .main-nav ul, .footer-nav ul {
        gap: 8px;
        flex-wrap: wrap;
    }
    .main-nav, .footer-nav { flex-direction: column; align-items: flex-start; gap: 16px; }
    .footer-nav { align-items: flex-start; }
    .main-nav img, .footer-nav img { margin-bottom: 18px; height: 36px; }
    .service-cards, .feature-grid, .feature-icons, .content-grid, .testimonial-slider, .testimonial-blocks {
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
    }
    .text-image-section, .card-container {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }
}
@media (max-width: 650px) {
    h1 { font-size: 1.30rem; }
    h2 { font-size: 1.12rem; }
    .main-nav, .footer-nav, .container { max-width: 100vw; padding: 0 6px; }
    .section { margin-bottom: 34px; padding: 24px 5px; }
    .hero { padding: 32px 0 20px 0; border-radius: 0 0 14px 14px;}
    .features, .services, .testimonials, .legal { border-radius: 8px; padding: 14px 2px; }
    .service-cards > div, .feature-grid > div, .feature-icons > div, .card {
        padding: 16px 10px 10px 10px;
    }
    .testimonial-card { padding: 12px; font-size: 0.98rem; }
    .cta-btn, .cookie-btn { padding: 10px 11px; font-size: 1.01rem; }
    .cookie-banner { flex-direction: column; gap: 9px; font-size: .98rem; }
    .cookie-banner-content { max-width: 99vw; }
    .cookie-modal { padding: 16px 6vw 14px 6vw; min-width: 0; width: 98vw; }
}
/* MOBILE MENU VISIBILITY */
@media (max-width: 990px) {
    .main-nav ul { display: none !important; }
    .main-nav .cta-btn { display: none !important; }
    .mobile-menu-toggle { display: block; }
}
@media (min-width: 991px) {
    .mobile-menu-toggle, .mobile-menu { display: none !important; }
}

/* === MISCELLANEOUS & ACCESSIBILITY === */
::-webkit-scrollbar { width: 8px; background: var(--accent); }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 6px; }
::selection { background: var(--playful-yellow); color: var(--primary); }

/* FOCUS STATES */
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus {
    outline: 2px dashed var(--secondary);
    outline-offset: 3px;
    background: var(--accent);
}

/* ERROR STATES & VISUAL FEEDBACK */
input:invalid, textarea:invalid {
    border-color: var(--playful-coral);
    box-shadow: 0 2px 6px rgba(255,93,129,0.13);
}

/* PLAYFUL MICRO-ANIMATION (BUBBLE ON BUTTONS) */
.cta-btn:after, .cookie-btn.accept:after {
  content: '';
  display: block;
  width: 22px; height: 22px;
  background: var(--playful-yellow);
  border-radius: 50%;
  position: absolute;
  left: -16px; top: -10px;
  opacity: 0.15;
  transform: scale(0.85);
  z-index: -1;
}
.cta-btn:hover:after, .cookie-btn.accept:hover:after {
  background: var(--playful-coral);
  opacity: 0.27;
}

/* END CSS */
