/*
Theme Name: Hello Elementor Child — Cosmic
Theme URI: https://mycandyplanet.com
Template: hello-elementor
Description: Dark cosmic child theme for MyCandyPlanet based on Hello Elementor
Author: MyCandyPlanet
Version: 1.0
*/

/* === Global === */
body {
    background-color: #0D0D1A !important;
    color: #FFFFFF !important;
    font-family: 'Nunito', sans-serif !important;
}

/* === Links === */
a {
    color: #FF6FB7;
    transition: color 0.3s ease;
}
a:hover {
    color: #9B5DE5;
}

/* === Headings === */
h1, h2, h3, h4, h5, h6 {
    color: #FFFFFF !important;
    font-family: 'Nunito', sans-serif !important;
}

/* === Buttons — gradient pink → purple === */
.wp-block-button__link,
.wp-element-button,
.elementor-button,
.elementor-button-wrapper .elementor-button,
button,
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt {
    background: linear-gradient(135deg, #FF6FB7 0%, #9B5DE5 100%) !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 12px 28px !important;
    font-family: 'Nunito', sans-serif !important;
    font-weight: 700 !important;
    transition: opacity 0.3s ease, transform 0.2s ease !important;
    text-decoration: none !important;
    fill: #FFFFFF !important;
}
.elementor-button:hover,
.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    background: linear-gradient(135deg, #9B5DE5 0%, #FF6FB7 100%) !important;
}

/* === Navigation === */
nav a,
.elementor-nav-menu a,
.elementor-nav-menu--main a {
    color: #FFFFFF !important;
    font-family: 'Nunito', sans-serif !important;
    font-weight: 600;
    transition: color 0.3s ease;
}
nav a:hover,
.elementor-nav-menu a:hover {
    color: #FF6FB7 !important;
}

/* === Hide default theme header === */
.site-header {
    display: none !important;
}

/* ============================================
   HEADER — clean two-row
   ============================================ */
.mcp-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 99999;
    font-family: 'Nunito', sans-serif;
}

/* ---------- ROW 1 ---------- */
.mcp-row1 {
    height: 100px;
    background: rgba(13, 13, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.mcp-row1-inner {
    display: flex;
    align-items: center;
    height: 100px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Three columns: 25% / 50% / 25% */
.mcp-col-left  { width: 25%; flex-shrink: 0; }
.mcp-col-center{ width: 50%; text-align: center; }
.mcp-col-right { width: 25%; flex-shrink: 0; display: flex; align-items: center; justify-content: flex-end; gap: 20px; }

/* Logo — the key rule: fixed height, auto width, no crop */
.mcp-logo-link {
    display: inline-block;
    line-height: 0;
}
.mcp-logo-img {
    display: block !important;
    height: 120px !important;
    width: auto !important;
    max-height: 120px !important;
    margin: 0 auto !important;
    object-fit: contain !important;
}

/* Search */
.mcp-search {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 300px;
}
.mcp-search svg {
    position: absolute;
    left: 14px;
    pointer-events: none;
    color: rgba(255,111,183,0.5);
    transition: color 0.3s;
}
.mcp-search:focus-within svg {
    color: #FF6FB7;
}
.mcp-search input[type="search"] {
    width: 100%;
    background: rgba(26,26,46,0.7) !important;
    border: 1px solid rgba(255,111,183,0.25) !important;
    border-radius: 24px !important;
    color: #FFF !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 14px !important;
    padding: 10px 16px 10px 40px !important;
    outline: none !important;
    transition: border-color 0.3s, box-shadow 0.3s, width 0.4s;
}
.mcp-search input[type="search"]:focus {
    border-color: #FF6FB7 !important;
    box-shadow: 0 0 12px rgba(255,111,183,0.3), 0 0 30px rgba(255,111,183,0.1) !important;
}
.mcp-search input[type="search"]::placeholder {
    color: #7777AA !important;
}

/* Icons */
.mcp-ico {
    color: #FFF !important;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    position: relative;
    transition: color 0.3s, filter 0.3s;
}
.mcp-ico:hover {
    color: #FF6FB7 !important;
    filter: drop-shadow(0 0 6px rgba(255,111,183,0.5));
}
.mcp-ico svg { display: block; }

/* Cart badge */
.mcp-badge {
    position: absolute;
    top: -7px; right: -9px;
    background: linear-gradient(135deg, #FF6FB7, #9B5DE5);
    color: #FFF;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px; height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    padding: 0 4px;
    animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
    0%,100% { transform: scale(1); }
    50%     { transform: scale(1.15); }
}

/* Language */
.mcp-lang {
    color: #FFF;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    user-select: none;
}

/* Burger (mobile only) */
.mcp-burger {
    display: none !important;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px; height: 32px;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer;
    border-radius: 0 !important;
}
.mcp-burger span {
    display: block;
    width: 22px; height: 2px;
    background: #FFF;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.25s;
}
.mcp-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mcp-burger.open span:nth-child(2) { opacity: 0; }
.mcp-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- ROW 2 ---------- */
.mcp-row2 {
    height: 50px;
    background: rgba(8, 8, 16, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
}
.mcp-row2 nav ul {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    align-items: center;
}
.mcp-row2 nav ul li a {
    color: #FFFFFF !important;
    text-decoration: none !important;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 18px;
    letter-spacing: 1px;
    transition: color 0.3s;
    white-space: nowrap;
}
.mcp-row2 nav ul li a:hover {
    color: #FF6FB7 !important;
}

/* Star separator */
.mcp-star {
    color: rgba(255,111,183,0.3);
    font-size: 9px;
    padding: 0 4px;
    user-select: none;
}

/* ---------- Gradient line under row 2 ---------- */
.mcp-hdr-line {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #FF6FB7 35%, #9B5DE5 50%, #FF6FB7 65%, transparent 100%);
    background-size: 200% 100%;
    animation: lineSlide 4s linear infinite;
}
@keyframes lineSlide {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ---------- Body offset: 100 + 50 = 150px ---------- */
body {
    padding-top: 150px !important;
}

/* ---------- Mobile overlay ---------- */
.mcp-mob-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 99998;
    background: rgba(8,8,16,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1), opacity 0.3s;
    pointer-events: none;
}
.mcp-mob-overlay.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.mcp-mob-overlay ul {
    list-style: none;
    margin: 0; padding: 0;
    text-align: center;
}
.mcp-mob-overlay ul li { margin: 14px 0; }
.mcp-mob-overlay ul li a {
    color: #FFF !important;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-size: 26px;
    font-weight: 700;
    transition: color 0.3s;
}
.mcp-mob-overlay ul li a:hover { color: #FF6FB7 !important; }
body.mcp-no-scroll { overflow: hidden; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .mcp-row1-inner { padding: 0 20px; }
    .mcp-logo-img {
        height: 90px !important;
        max-height: 90px !important;
    }
    .mcp-row2 nav ul li a {
        font-size: 13px;
        padding: 14px 10px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 768px) {
    .mcp-burger { display: flex !important; }
    .mcp-row2 { display: none; }
    .mcp-hdr-line { display: none; }
    .mcp-lang { display: none; }

    .mcp-row1 { height: 70px; }
    .mcp-row1-inner { height: 70px; padding: 0 14px; }

    .mcp-col-left  { width: auto; flex: 1; }
    .mcp-col-center{ width: auto; flex: 0 0 auto; }
    .mcp-col-right { width: auto; flex: 0 0 auto; gap: 14px; }

    .mcp-logo-img {
        height: 50px !important;
        max-height: 50px !important;
    }
    .mcp-search { max-width: 160px; }
    body { padding-top: 70px !important; }
}

@media (max-width: 480px) {
    .mcp-search { max-width: 110px; }
    .mcp-logo-img {
        height: 40px !important;
        max-height: 40px !important;
    }
    .mcp-col-right { gap: 10px; }
    .mcp-ico svg { width: 20px; height: 20px; }
}

/* === Footer === */
footer, .site-footer,
.elementor-location-footer {
    background-color: #0D0D1A !important;
}
.site-footer {
    color: #AAAACC;
}

/* === Elementor sections === */
.elementor-section,
.elementor-element {
    color: #FFFFFF;
}

/* === WooCommerce product cards === */
.woocommerce ul.products li.product {
    background: #1A1A2E;
    border-radius: 12px;
    padding: 16px;
    transition: transform 0.3s ease;
}
.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
}
.woocommerce ul.products li.product .price {
    color: #FF6FB7 !important;
    font-weight: 700;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #FFFFFF !important;
}

/* === Sale badge === */
.woocommerce span.onsale {
    background: linear-gradient(135deg, #FF6FB7 0%, #9B5DE5 100%) !important;
    color: #FFFFFF !important;
    border-radius: 50% !important;
}

/* === Input fields === */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="number"],
textarea,
select,
.elementor-field-textual {
    background-color: #1A1A2E !important;
    color: #FFFFFF !important;
    border: 1px solid #9B5DE5 !important;
    border-radius: 8px !important;
    font-family: 'Nunito', sans-serif !important;
}
input::placeholder,
textarea::placeholder {
    color: #AAAACC !important;
}

/* === Paragraphs === */
p, li, span, td, th, label {
    color: #FFFFFF;
}

/* === Scrollbar === */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0D0D1A;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FF6FB7, #9B5DE5);
    border-radius: 4px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.mcp-hero {
    position: relative;
    overflow: hidden;
    background-color: #0D0D1A;
    height: 100vh;
    margin-top: -150px;
    padding-top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}
.mcp-hero .stars-layer {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}
.mcp-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.mcp-hero h1 {
    font-family: 'Nunito', sans-serif !important;
    font-weight: 800 !important;
    font-size: 64px !important;
    color: #FFFFFF !important;
    margin: 0 0 20px;
    line-height: 1.15;
}
/* GSAP word spans */
.mcp-word {
    display: inline-block;
    margin-right: 0.25em;
    will-change: transform, opacity;
}
.mcp-word:last-child {
    margin-right: 0;
}
.mcp-hero-sub,
.mcp-hero-cta {
    will-change: transform, opacity;
}
/* CTA click confetti particles */
.mcp-hero-cta {
    position: relative;
    overflow: visible;
}
.mcp-cta-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10;
}
.mcp-hero .hero-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 48px;
    line-height: 1.5;
}
.mcp-hero .hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #FF6FB7 0%, #9B5DE5 100%) !important;
    color: #FFFFFF !important;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
}
.mcp-hero .hero-cta:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    background: linear-gradient(135deg, #9B5DE5 0%, #FF6FB7 100%) !important;
}

/* === Responsive hero === */
@media (max-width: 768px) {
    .mcp-hero h1 {
        font-size: 36px !important;
    }
    .mcp-hero .hero-subtitle {
        font-size: 18px;
    }
}

/* ============================================
   CSS STAR ANIMATION
   ============================================ */
.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 50%;
    animation: twinkle var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
    opacity: 0;
}
@keyframes twinkle {
    0%, 100% { opacity: 0; }
    50% { opacity: var(--max-opacity, 1); }
}

/* ============================================
   CUSTOM FOOTER
   ============================================ */
.mcp-footer {
    background-color: #080810 !important;
    padding: 40px 40px 30px;
    color: #AAAACC;
    font-family: 'Nunito', sans-serif;
}
.mcp-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}
.mcp-footer-left {
    flex: 1;
}
.mcp-footer-left ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 24px;
}
.mcp-footer-left ul li a {
    color: #FFFFFF !important;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}
.mcp-footer-left ul li a:hover {
    color: #FF6FB7 !important;
}
.mcp-footer-right {
    flex: 0 0 auto;
    text-align: right;
}
.mcp-footer-right .footer-copy {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 4px;
}
.mcp-footer-right .footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* Hide default theme footer */
.site-footer,
footer.site-footer {
    display: none !important;
}

@media (max-width: 768px) {
    .mcp-footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .mcp-footer-left ul {
        justify-content: center;
    }
    .mcp-footer-right {
        text-align: center;
    }
    .mcp-footer {
        padding-bottom: 80px !important;
    }
}

/* ============================================
   PRELOADER — Mystery Box (GSAP)
   ============================================ */
.mcp-preloader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 999999;
    background: #0D0D1A;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* CSS fallback: auto-hide if JS fails */
    animation: mcpFallbackHide 0.5s ease 8s forwards;
}
.mcp-preloader.mcp-pl-active {
    animation: none; /* GSAP took over — cancel fallback */
}
@keyframes mcpFallbackHide {
    to { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* Stars container */
.mcp-pl-stars {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
}
.mcp-pl-star {
    position: absolute;
    background: #FFF;
    border-radius: 50%;
    opacity: 0;
}

/* White flash */
.mcp-pl-flash {
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(255,111,183,0.3) 60%, transparent 100%);
    opacity: 0;
    pointer-events: none;
    z-index: 5;
    will-change: transform, opacity;
}

/* Mystery Box */
.mcp-pl-box {
    position: absolute;
    z-index: 10;
    opacity: 0;
    will-change: transform, opacity;
}
.mcp-pl-box img {
    width: 180px;
    height: auto;
    display: block;
}
.mcp-pl-lid {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 40%;
    transform-origin: left top;
    z-index: 11;
}

/* Flying items */
.mcp-pl-item {
    position: absolute;
    z-index: 8;
    opacity: 0;
    will-change: transform, opacity;
}
.mcp-pl-item img {
    width: 100px;
    height: auto;
    display: block;
}

/* Logo */
.mcp-pl-logo {
    position: absolute;
    z-index: 12;
    opacity: 0;
    will-change: transform, opacity;
    filter: drop-shadow(0 0 15px rgba(255,111,183,0.5));
}
.mcp-pl-logo img {
    height: 140px;
    width: auto;
    display: block;
}

/* Tagline */
.mcp-pl-tagline {
    position: absolute;
    z-index: 12;
    margin-top: 200px;
    font-family: 'Nunito', sans-serif;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 3px;
    white-space: nowrap;
    text-transform: uppercase;
}
.mcp-pl-char {
    display: inline-block;
    opacity: 0;
    background: linear-gradient(135deg, #FF6FB7, #9B5DE5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Skip button */
.mcp-pl-skip {
    position: absolute;
    bottom: 40px; right: 40px;
    z-index: 20;
    opacity: 0;
    background: none;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 20px;
    color: rgba(255,255,255,0.6);
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    cursor: pointer;
    transition: color 0.3s, border-color 0.3s;
}
.mcp-pl-skip:hover {
    color: #FF6FB7;
    border-color: #FF6FB7;
}

/* ── Mobile: all sizes ×0.6 ── */
@media (max-width: 768px) {
    .mcp-pl-box img { width: 108px; }
    .mcp-pl-item img { width: 60px; }
    .mcp-pl-logo img { height: 84px; }
    .mcp-pl-tagline {
        font-size: 16px;
        letter-spacing: 1.5px;
        margin-top: 120px;
    }
    .mcp-pl-flash { width: 180px; height: 180px; }
    .mcp-pl-skip { bottom: 24px; right: 24px; font-size: 12px; }
}

/* ============================================
   CUSTOM CURSOR + TRAIL
   ============================================ */
.mcp-cursor-dot {
    position: fixed;
    width: 10px; height: 10px;
    background: #FF6FB7;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999998;
    transform: translate(-50%,-50%);
    box-shadow: 0 0 8px #FF6FB7;
    transition: width 0.15s, height 0.15s;
    mix-blend-mode: screen;
}
.mcp-cursor-trail {
    position: fixed;
    border-radius: 50%;
    background: rgba(255,111,183,0.4);
    pointer-events: none;
    z-index: 999997;
    transform: translate(-50%,-50%);
    mix-blend-mode: screen;
}
/* Hide on touch/mobile */
@media (hover: none) {
    .mcp-cursor-dot, .mcp-cursor-trail { display: none; }
}
/* Hide default cursor on desktop */
@media (hover: hover) {
    body, a, button, input, select, textarea { cursor: none !important; }
}

/* Click confetti particles */
.mcp-click-particle {
    position: fixed;
    width: 5px; height: 5px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999996;
    transform: translate(-50%,-50%);
    animation: clickPop 0.55s ease-out forwards;
}
@keyframes clickPop {
    0%   { transform: translate(-50%,-50%) translate(0,0) scale(1); opacity: 1; }
    100% { transform: translate(-50%,-50%) translate(var(--tx), var(--ty)) scale(0); opacity: 0; }
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.mcp-scroll-bar {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #FF6FB7, #9B5DE5);
    z-index: 999999;
    transition: width 0.1s linear;
    pointer-events: none;
}

/* Scroll reveal handled by GSAP ScrollTrigger in animations.js */

/* ============================================
   PRODUCT CARD 3D TILT + GLOW
   ============================================ */
.woocommerce ul.products li.product {
    transition: transform 0.2s ease, box-shadow 0.3s ease !important;
    transform-style: preserve-3d;
    will-change: transform;
}
.woocommerce ul.products li.product:hover {
    box-shadow: 0 0 20px rgba(255,111,183,0.2), 0 8px 30px rgba(0,0,0,0.3) !important;
}

/* Product image zoom */
.woocommerce div.product div.images {
    overflow: hidden;
    border-radius: 12px;
}
.woocommerce div.product div.images img {
    transition: transform 0.2s ease;
    transform-origin: center center;
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.mcp-toast-wrap {
    position: fixed;
    bottom: 30px;
    left: 20px;
    z-index: 99990;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.mcp-toast {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(13,13,26,0.95);
    border: 1px solid rgba(255,111,183,0.2);
    border-radius: 14px;
    padding: 12px 18px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: #FFF;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1), opacity 0.4s;
    pointer-events: auto;
    max-width: 340px;
}
.mcp-toast.show {
    transform: translateX(0);
    opacity: 1;
}
.mcp-toast-icon {
    font-size: 22px;
    flex-shrink: 0;
}
.mcp-toast-text {
    line-height: 1.3;
}

@media (max-width: 768px) {
    .mcp-toast-wrap {
        bottom: 80px;
        left: 10px;
        right: 10px;
    }
    .mcp-toast { max-width: 100%; }
}

/* ============================================
   BUTTON RIPPLE
   ============================================ */
.mcp-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    width: 0; height: 0;
    transform: translate(-50%,-50%);
    animation: rippleOut 0.6s ease-out forwards;
    pointer-events: none;
}
@keyframes rippleOut {
    0%   { width: 0; height: 0; opacity: 0.5; }
    100% { width: 200px; height: 200px; opacity: 0; }
}

/* ============================================
   COMET
   ============================================ */
.mcp-comet {
    position: fixed;
    width: 3px; height: 3px;
    background: #FFF;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    box-shadow: 0 0 6px #FFF, 0 0 12px #FF6FB7;
    animation: cometFly 3s linear forwards;
}
.mcp-comet::after {
    content: '';
    position: absolute;
    top: 0; right: 100%;
    width: 80px; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,111,183,0.6));
    transform-origin: right center;
}
@keyframes cometFly {
    0%   { left: -100px; opacity: 1; }
    100% { left: 110vw; opacity: 0; }
}

/* ============================================
   AURORA (inactivity)
   ============================================ */
.mcp-aurora {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 50vh;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 3s ease;
    background: linear-gradient(180deg,
        rgba(155,93,229,0.08) 0%,
        rgba(255,111,183,0.05) 40%,
        transparent 100%);
    animation: auroraWave 6s ease-in-out infinite;
}
.mcp-aurora.active {
    opacity: 1;
}
@keyframes auroraWave {
    0%,100% { transform: translateY(-5px) scaleY(1); }
    50%     { transform: translateY(5px) scaleY(1.05); }
}

/* ============================================
   MOBILE BOTTOM NAV
   ============================================ */
.mcp-bottom-nav {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 99999;
    height: 64px;
    background: rgba(8,8,16,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-top: 1px solid rgba(255,111,183,0.15);
    padding-bottom: env(safe-area-inset-bottom, 0);
}
.mcp-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-decoration: none !important;
    color: rgba(255,255,255,0.5) !important;
    font-family: 'Nunito', sans-serif;
    font-size: 10px;
    font-weight: 600;
    transition: color 0.3s;
}
.mcp-bottom-nav a:hover,
.mcp-bottom-nav a:active {
    color: #FF6FB7 !important;
}
.mcp-bottom-nav a span {
    font-size: 22px;
    line-height: 1;
}

/* Add bottom padding on mobile for bottom nav */
@media (max-width: 768px) {
    body {
        padding-bottom: 64px !important;
    }
}
