:root {
    /* Dreamy Soft Pastel Sky Theme Colors */
    --sky-deep: #3D2A44;
    --sky-pink: #FFB7B2;
    --sky-blue: #B5E2FF;
    --sky-lavender: #E0C3FC;
    --sky-cream: #FFF5EB;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--sky-deep);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -10;
    /* Soft pastel aurora glowing background */
    background: linear-gradient(-45deg, #FFD1DC, #FFF9FA, #C1E3F6, #FFFDF9) !important;
    background-size: 400% 400% !important;
    animation: gradientBG 16s ease infinite !important;
    pointer-events: none;
    transform: translate3d(0, 0, 0); /* Force GPU composite layer */
    will-change: transform;
}

/* Cute Drifting Floating Elements */
@keyframes driftUp {
    0% {
        transform: translateY(110vh) rotate(0deg) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-10vh) rotate(360deg) translateX(50px);
        opacity: 0;
    }
}

.floating-baby-element {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

/* Glassmorphism Cards with Soft Glow Borders */
.glass-card {
    background: rgba(255, 255, 255, 0.72) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    box-shadow: 0 10px 30px rgba(61, 42, 68, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
    border-radius: 24px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(61, 42, 68, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

.font-serif {
    font-family: 'Cormorant Garamond', serif;
}

.font-cursive {
    font-family: 'Great Vibes', cursive;
}

/* Rainbow Shifting Gradient Text for Titles */
.text-rose-gold {
    background: linear-gradient(135deg, #FF6B8B 0%, #D052F1 50%, #4FA8FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
    background-size: 200% auto;
    animation: shineText 8s ease infinite;
}

/* Rainbow Shifting Gradient Cursive Style for Names */
.text-rose-gold-cursive {
    background: linear-gradient(135deg, #E27B9B 0%, #B85CD6 50%, #5C95E6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shineText 8s ease infinite;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.15);
}

@keyframes shineText {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.bg-rose-gold-gradient {
    background: linear-gradient(90deg, #FFE29F 0%, #FFA7D1 50%, #B3E5FC 100%) !important;
}

.border-rose-gold {
    border-image: linear-gradient(135deg, #FFE29F, #FFA7D1, #B3E5FC) 1;
}

/* Sparkly Iridescent Button Styling */
.btn-gold {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FFE29F 0%, #FFA7D1 50%, #B3E5FC 100%) !important;
    color: #4A2834 !important;
    font-weight: 700 !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 4px 15px rgba(255, 167, 209, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-family: 'Cormorant Garamond', serif !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
}

.btn-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-20deg);
    transition: 0.8s;
}

.btn-gold:hover::after {
    left: 150%;
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 167, 209, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* depth shadow adjustments */
.rose-shadow {
    box-shadow: 0 10px 30px rgba(61, 42, 68, 0.04);
}

.rose-shadow-sm {
    box-shadow: 0 5px 15px rgba(61, 42, 68, 0.02);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #FFFDFB;
}

::-webkit-scrollbar-thumb {
    background: #FFD1E6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #B5E2FF;
}

/* Inputs Focus Ring */
.rose-input:focus {
    outline: none;
    border-color: #FFA7D1;
    box-shadow: 0 0 0 3px rgba(255, 167, 209, 0.25);
}

/* Floating Badge Animation */
@keyframes gentle-float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(2deg);
    }
}

.gentle-float {
    animation: gentle-float 6s ease-in-out infinite;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.sparkle-slow {
    animation: sparkle 4s ease-in-out infinite;
}

/* Balloon Shape for Countdown Cards */
.balloon-card {
    position: relative;
    aspect-ratio: 1 / 1.32;
    border-radius: 50% 50% 40% 40% / 45% 45% 55% 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: visible !important;
    padding-bottom: 1.25rem !important; /* Move text up slightly to center in the bulb */
    border: 1px solid rgba(255, 255, 255, 0.65) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    transition: all 0.4s ease;
}

.balloon-pink {
    background: linear-gradient(135deg, rgba(255, 240, 243, 0.75) 0%, rgba(255, 214, 224, 0.65) 100%) !important;
    box-shadow: 0 10px 25px rgba(255, 183, 178, 0.35), 
                inset -5px -5px 12px rgba(255, 94, 126, 0.15), 
                inset 5px 5px 10px rgba(255, 255, 255, 0.8) !important;
}

.balloon-blue {
    background: linear-gradient(135deg, rgba(240, 247, 255, 0.75) 0%, rgba(208, 231, 255, 0.65) 100%) !important;
    box-shadow: 0 10px 25px rgba(181, 226, 255, 0.35), 
                inset -5px -5px 12px rgba(59, 156, 255, 0.15), 
                inset 5px 5px 10px rgba(255, 255, 255, 0.8) !important;
}

.balloon-purple {
    background: linear-gradient(135deg, rgba(250, 245, 255, 0.75) 0%, rgba(233, 213, 255, 0.65) 100%) !important;
    box-shadow: 0 10px 25px rgba(224, 195, 252, 0.35), 
                inset -5px -5px 12px rgba(168, 85, 247, 0.15), 
                inset 5px 5px 10px rgba(255, 255, 255, 0.8) !important;
}

.balloon-gold {
    background: linear-gradient(135deg, rgba(254, 252, 232, 0.75) 0%, rgba(254, 240, 138, 0.65) 100%) !important;
    box-shadow: 0 10px 25px rgba(255, 226, 159, 0.35), 
                inset -5px -5px 12px rgba(234, 179, 8, 0.15), 
                inset 5px 5px 10px rgba(255, 255, 255, 0.8) !important;
}

/* Balloon tie (knot) at the bottom */
.balloon-card::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 7px;
    z-index: 5;
    clip-path: polygon(25% 0%, 75% 0%, 100% 100%, 0% 100%);
}

.balloon-pink::before {
    background-color: #FFD6E0 !important;
}

.balloon-blue::before {
    background-color: #D0E7FF !important;
}

.balloon-purple::before {
    background-color: #E9D5FF !important;
}

.balloon-gold::before {
    background-color: #FEF08A !important;
}

/* Balloon string */
.balloon-card::after {
    content: '';
    position: absolute;
    bottom: -38px;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5px;
    height: 35px;
    background: linear-gradient(to bottom, rgba(74, 52, 54, 0.4) 0%, rgba(74, 52, 54, 0.05) 80%, transparent 100%);
    z-index: -1;
    pointer-events: none;
}

/* Baby Shower themed glowing gradients */
.text-pink-glow {
    background: linear-gradient(135deg, #FF5E7E 0%, #FF99AC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(255, 94, 126, 0.15));
}

.text-blue-glow {
    background: linear-gradient(135deg, #3B9CFF 0%, #8CC5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(59, 156, 255, 0.15));
}

.text-lavender-glow {
    background: linear-gradient(135deg, #A855F7 0%, #D8B4FE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(168, 85, 247, 0.15));
}

.text-gold-glow {
    background: linear-gradient(135deg, #EAB308 0%, #FDE047 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(234, 179, 8, 0.15));
}

/* Cover Overlay / Splash Styling */
body.cover-active {
    overflow: hidden !important;
    height: 100vh !important;
}

#invitationCover {
    transition: opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1), transform 1.2s cubic-bezier(0.19, 1, 0.22, 1) !important;
}

#coverCard {
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1) !important;
}

.cover-hidden {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-100%) scale(1.05) !important;
}

.card-zoom-out {
    transform: scale(0.9) translateY(-30px) !important;
    opacity: 0 !important;
}

/* Scroll reveal styles */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Maternity Gallery Styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(61, 42, 68, 0.12), 0 0 20px rgba(255, 183, 178, 0.25) !important;
    border-color: rgba(255, 183, 178, 0.8) !important;
}

/* Hover Overlay Soft Light */
.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, rgba(61, 42, 68, 0.45));
    z-index: 1;
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Floating click hearts animation */
@keyframes floatHeart {
    0% {
        transform: translate(0, 0) scale(0.5);
        opacity: 1;
    }

    100% {
        transform: translate(var(--dx), var(--dy)) scale(var(--scale)) rotate(var(--rot));
        opacity: 0;
    }
}

.floating-heart {
    position: fixed;
    pointer-events: none;
    z-index: 1000;
    font-size: 1.5rem;
    animation: floatHeart 1.2s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

/* Pop scale animation for weight text */
@keyframes textPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.18);
    }

    100% {
        transform: scale(1);
    }
}

.animate-pop {
    display: inline-block;
    animation: textPop 0.22s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Shake error animation */
.animate-shake {
    animation: shake 0.3s ease-in-out;
    border: 2px solid #f87171 !important;
    border-radius: 12px;
    background-color: rgba(254, 226, 226, 0.2) !important;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}

/* Liquid Blob & Stardust Background */
.animate-blob {
    animation: blobBounce 20s infinite alternate;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

@keyframes blobBounce {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Gatefold Envelope Styles */
.gate-panel {
    transition: transform 1.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
    box-shadow: inset 0 0 35px rgba(140, 80, 89, 0.08), 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gate-left {
    transform-origin: left center;
}

.gate-right {
    transform-origin: right center;
}

.gate-open .gate-left {
    transform: rotateY(100deg);
}

.gate-open .gate-right {
    transform: rotateY(-100deg);
}

.wax-seal {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

/* Door recessed panel look */
.door-panel-recessed {
    box-shadow: inset 0 6px 15px rgba(140, 80, 89, 0.06), 0 2px 4px rgba(255, 255, 255, 0.8) !important;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.door-panel-recessed:hover {
    border-color: rgba(217, 160, 91, 0.5) !important;
}

/* Elegant door handles */
.door-handle-left, .door-handle-right {
    position: absolute;
    top: 50%;
    width: 12px;
    height: 80px;
    background: linear-gradient(135deg, #FFE29F, #D9A05B);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 10px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.4);
    z-index: 40;
}

@media (min-width: 640px) {
    .door-handle-left, .door-handle-right {
        width: 16px;
        height: 120px;
    }
}

.door-handle-left {
    right: 2px;
    transform: translateY(-50%);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.door-handle-right {
    left: 2px;
    transform: translateY(-50%);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Door handle bars */
.door-handle-left::before, .door-handle-right::before {
    content: '';
    position: absolute;
    top: 15px;
    bottom: 15px;
    width: 5px;
    background: linear-gradient(90deg, #FFFFFF, #D9A05B);
    border-radius: 3px;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.25);
}

.door-handle-left::before {
    right: 2px;
}

.door-handle-right::before {
    left: 2px;
}

/* Premium Seal Break Animation */
@keyframes sealBreakingAnim {
    0% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    15% {
        transform: translate(-50%, -50%) scale(1.1) rotate(-8deg);
    }
    30% {
        transform: translate(-50%, -50%) scale(1.1) rotate(8deg);
    }
    45% {
        transform: translate(-50%, -50%) scale(1.15) rotate(-12deg);
        filter: drop-shadow(0 0 15px rgba(217, 160, 91, 0.8));
    }
    60% {
        transform: translate(-50%, -50%) scale(1.15) rotate(12deg);
        filter: drop-shadow(0 0 25px rgba(217, 160, 91, 1));
    }
    75% {
        transform: translate(-50%, -50%) scale(1.25) rotate(0deg);
        opacity: 1;
    }
    90% {
        transform: translate(-50%, -50%) scale(1.35) rotate(0deg);
        opacity: 0.75;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.6) rotate(0deg);
        opacity: 0;
    }
}

.seal-breaking {
    animation: sealBreakingAnim 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards !important;
}

.gate-open .wax-seal {
    opacity: 0;
    pointer-events: none;
}

/* Neon Countdown Tilt Cards */
.tilt-neon-card {
    transform-style: preserve-3d;
    will-change: transform;
    transition: box-shadow 0.3s ease;
}

/* Iridescent Gallery Effects */
.gallery-item {
    border-radius: 24px !important;
    overflow: visible !important;
    border: none !important;
    background: transparent !important;
}

.img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transform: scale(1);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover .img-wrapper {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 183, 178, 0.3);
}

.iridescent-overlay {
    position: absolute;
    inset: 0;
    z-index: 20;
    background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.4) 25%, transparent 30%);
    background-size: 200% 100%;
    background-position: 100% 0;
    transition: background-position 0.8s ease;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.gallery-item:hover .iridescent-overlay {
    background-position: 0 0;
}

#lightboxImage {
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Springy Scale Needle */
#scaleNeedle,
#scaleBaby {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

/* Premium Luxury Date & Time Cards */
.premium-datetime-card {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(61, 42, 68, 0.03), 0 0 25px rgba(224, 195, 252, 0.06);
}
.premium-datetime-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 28px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 183, 178, 0.5), rgba(224, 195, 252, 0.5), rgba(181, 226, 255, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: all 0.5s ease;
}
.premium-datetime-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(61, 42, 68, 0.08), 0 0 40px rgba(224, 195, 252, 0.15);
    background: rgba(255, 255, 255, 0.85);
}
.premium-datetime-card:hover::before {
    background: linear-gradient(135deg, #FFB7B2, #E0C3FC, #B5E2FF);
}

.premium-calendar {
    width: 96px;
    height: 96px;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 10px 25px rgba(255, 183, 178, 0.2), inset 0 -2px 0 rgba(0,0,0,0.04);
    border: 1px solid rgba(255, 183, 178, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.premium-calendar-header {
    background: linear-gradient(135deg, #FFB7B2, #FFA099);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
}
.premium-calendar-day {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FF7F95;
    background: #FFFDFE;
}
.premium-datetime-card:hover .premium-calendar {
    transform: rotate(-6deg) scale(1.08);
    box-shadow: 0 15px 30px rgba(255, 183, 178, 0.35);
}

.premium-clock-holder {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #F0F8FF;
    border: 1px solid rgba(181, 226, 255, 0.3);
    box-shadow: 0 10px 25px rgba(181, 226, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.premium-clock-icon {
    color: #4FA8FF;
    font-size: 2.5rem;
}
.premium-datetime-card:hover .premium-clock-holder {
    transform: rotate(6deg) scale(1.08);
    box-shadow: 0 15px 30px rgba(181, 226, 255, 0.35);
}

.luxury-date-plate {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 20px;
    border-width: 2px;
    border-style: solid;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
    display: inline-block;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.luxury-date-plate::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 35%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.45), transparent);
    transform: rotate(30deg);
    transition: all 0.8s ease;
}
.premium-datetime-card:hover .luxury-date-plate {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}
.premium-datetime-card:hover .luxury-date-plate::after {
    left: 140%;
}

