@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
:root {
    --sellify-popup-animation-color: #1774ff;
    --sellify-popup-background-color: #fff;
    --sellfiy-popup-border-radius: 9px;
    --sellify-popup-shadow: 0px 4px 6px -2px rgba(26, 26, 26, 0.20);
    --sellify-popup-close-button-color: #000;
    --sellify-popup-text-color: #061f4c;
    --sellfiy-popup-branding-secondary-color: #5a6984;
    --sellfiy-popup-secondary-text-link-color: #0000ee;
    --sellify-popup-animation-enter-duration: 1s;
    --sellify-popup-animation-exit-duration: 0.5s;
    --sellfiy-popup-icon-background-color: #e3f2fd;
    --sellify-popup-mobile-bottom: auto;
    --sellify-popup-mobile-top: auto;
}

.sellify-popup {
    width: 300px;
    height: 70px;
    box-sizing: unset;
    position: fixed;
    padding: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 999999;
    /* animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both; */
    font-family:  "Inter", sans-serif;
    border-radius: var(--sellfiy-popup-border-radius);
    color: var(--sellify-popup-text-color);
    background-color: var(--sellify-popup-background-color);
    box-shadow: var(--sellify-popup-shadow);
}

.sellify-popup .hero {
    width: 64px;
    height: 64px;
}

.sellify-popup .hero #graph {
    fill: var(--sellify-popup-animation-color);
    transform: translate(1 1);
}

.sellify-popup .cart path{
    fill: var(--sellify-popup-animation-color);
}

.sellify-popup .stroke path {
    stroke: var(--sellify-popup-animation-color);
}

.sellify-popup .online-count {
    font-size: 14px;
    line-height: 1px;
    margin: 0px;
    font-weight: bold;
}

.sellify-popup .secondary-text {
    font-size: 11px;
    line-height: 1px;
    margin: 8px 0px 0px 0px;
}

.sellify-popup .secondary-text a {
    text-decoration: none;
    color: var(--sellfiy-popup-secondary-text-link-color);
}

.sellify-popup .branding {
    line-height: 1px;
    margin: 11px 0px 0px 0px;
    font-size: 10px;
    color: var(--sellify-popup-animation-color);
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.sellify-popup .branding span {
    color: var(--sellfiy-popup-branding-secondary-color);
    margin-right: 16px;
}

.sellify-popup .branding path {
    fill: var(--sellify-popup-animation-color);
}

.sellify-popup .close-button {
    position: absolute;
    cursor: pointer;
    width: 12px;
    height: 12px;
    right: 12px;
    top: 8px;
    transition: opacity ease 0.35s;
    opacity: 0;
    color: var(--sellify-popup-close-button-color);
}

@media screen and (max-width: 480px){
    .sellify-popup {
        margin: 0 !important;
        width: auto!important;
        left: 2%!important;
        right: 2%!important;
        top: var(--sellify-popup-mobile-top)!important;
        bottom: var(--sellify-popup-mobile-bottom)!important;
    }
}

.sellify-popup:hover > svg.close-button{
    opacity: 1;
}

/* @keyframes fadeInUp {
    0% {
        transform: translate3d(0, 100%, 0);
        opacity: 0;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes fadeOutDown {
    0% {
      opacity: 1;
      transform: translateY(0);
    }
    100% {
      opacity: 0;
      transform: translateY(100%);
    }
} 
.fadeOutDown {
    animation-name: fadeOutDown;
    animation-timing-function: ease-out;
}
*/

/* Slide from Bottom */
.slideFromBottom-enter {
    transform: translateY(100%);
    opacity: 0;
    animation: slideFromBottomIn var(--sellify-popup-animation-enter-duration) ease-out forwards;
}

.slideFromBottom-exit {
    animation: slideFromBottomOut var(--sellify-popup-animation-exit-duration) ease-in forwards;
}

@keyframes slideFromBottomIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideFromBottomOut {
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

/* Slide from Top */
.slideFromTop-enter {
    transform: translateY(-100vh);
    opacity: 0;
    animation: slideFromTopIn var(--sellify-popup-animation-enter-duration) ease-out forwards;
}

.slideFromTop-exit {
    animation: slideFromTopOut var(--sellify-popup-animation-exit-duration) ease-in forwards;
}

@keyframes slideFromTopIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideFromTopOut {
    to {
        transform: translateY(-100vh);
        opacity: 0;
    }
}

/* Slide from Right */
.slideFromRight-enter {
    transform: translateX(100vw);
    opacity: 0;
    animation: slideFromRightIn var(--sellify-popup-animation-enter-duration) ease-out forwards;
}

.slideFromRight-exit {
    animation: slideFromRightOut var(--sellify-popup-animation-exit-duration) ease-in forwards;
}

@keyframes slideFromRightIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideFromRightOut {
    to {
        transform: translateX(100vw);
        opacity: 0;
    }
}

/* Slide from Left */
.slideFromLeft-enter {
    transform: translateX(-100%);
    opacity: 0;
    animation: slideFromLeftIn var(--sellify-popup-animation-enter-duration) ease-out forwards;
}

.slideFromLeft-exit {
    animation: slideFromLeftOut var(--sellify-popup-animation-exit-duration) ease-in forwards;
}

@keyframes slideFromLeftIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideFromLeftOut {
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

/* Fade */
.fade-enter {
    opacity: 0;
    animation: fadeIn var(--sellify-popup-animation-enter-duration) ease-out forwards;
}

.fade-exit {
    animation: fadeOut var(--sellify-popup-animation-exit-duration) ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
    }
}

/* Zoom In */
.zoomIn-enter {
    transform: scale(0.3);
    opacity: 0;
    animation: zoomInAnimation var(--sellify-popup-animation-enter-duration) ease-out forwards;
}

.zoomIn-exit {
    animation: zoomOutAnimation var(--sellify-popup-animation-exit-duration) ease-in forwards;
}

@keyframes zoomInAnimation {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes zoomOutAnimation {
    to {
        transform: scale(0.3);
        opacity: 0;
    }
}

/* Bounce */
.bounce-enter {
    transform: scale(0.3);
    opacity: 0;
    animation: bounceIn var(--sellify-popup-animation-enter-duration) ease-out forwards;
}

.bounce-exit {
    animation: bounceOut var(--sellify-popup-animation-exit-duration) ease-in forwards;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounceOut {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    30% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(0.3);
        opacity: 0;
    }
}


/* .preview-tab-header {
    position: absolute;
    float: left;
} */
.demo-page {
    background-color: #f4f4f4;
    width: 100%;
    height: 70vh;
    width: 100%;
    border: 8px solid rgba(204, 204, 204, 1);
    position: relative;
    margin: auto;
    border-radius: 12px;
}

.icons {
    text-align: center;
    margin-top: 5px;
}

.icons .Polaris-Icon {
    display: inline-block;
    width: 2.3rem;
    height: 2.3rem;
}

.icons .Polaris-Icon:hover {
    cursor: pointer;
}

.pricing-card-features p{
    line-height: 26px;
    /* font-weight: bold; */
}

.pricing-card-features p{
    line-height: 28px;
    font-size: 14px;
    /* font-weight: bold; */
    display: flex;
    align-items: center;
}

.pricing-card-features p span{
    margin: 0px;
    margin-right: 2px;
}


.square-bg {
    width: 64px;
    height: 64px;
    background-color: var(--sellfiy-popup-icon-background-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}


.circle-bg {
    width: 64px;
    height: 64px;
    background-color: var(--sellfiy-popup-icon-background-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

@keyframes pulseBag {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes pulseRing {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.bounce-cart {
    animation: bounceCart 1.5s infinite;
}

@keyframes bounceCart {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

@keyframes timerPulse {
    0%, 100% { box-shadow: 0 0 0 0 #1874ff; }
    50% { box-shadow: 0 0 0 2px #e3f2fd; }
}