.wordmark {
    letter-spacing: .5px;
    background: linear-gradient(90deg, #000 0%, #dd0a0d 50%, #dd0a0d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn-shop-pulse {
    box-shadow: 0 0 0 0 rgba(221, 10, 13, .5);
    animation: pulse 2s infinite
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(221, 10, 13, .5)
    }

    70% {
        box-shadow: 0 0 0 14px rgba(221, 10, 13, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(221, 10, 13, 0)
    }
}

.modal-open {
    overflow: hidden
}

html.js .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s ease, transform .6s ease
}

html.js .reveal.is-visible {
    opacity: 1;
    transform: none
}

/* Base custom button */
.custom-swiper-btn {
    width: 40px;
    /* same as w-10 */
    height: 40px;
    /* h-10 */
    display: flex;
    /* flex */
    align-items: center;
    /* items-center */
    justify-content: center;
    /* justify-center */
    border-radius: 9999px;
    /* rounded-full */
    background-color: #dd0a0d;
    /* bg-white */
    color: #fff;
    /* text-slate-700 */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* shadow-md */
    transition: all 0.3s ease;
    /* transition */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

/* Hover styles */
.custom-swiper-btn:hover {
    background-color: #b70709;
    /* slate-800 */
}


@media(min-width: 640px) {
    .custom-swiper-btn {
       display: none;
    }
}


/* Make Swiperâ€™s default arrow icons visible inside */
.custom-swiper-btn::after {
    font-size: 16px;
    /* bigger than default (12px) */
    font-weight: bold;
}

@media(max-width: 768px) {
    .custom-swiper-btn {
        width: 32px;
        /* w-8 */
        height: 32px;
    }

    .custom-swiper-btn.swiper-button-prev {
        left: 0px;
    }

    .custom-swiper-btn.swiper-button-next {
        right: 0px;
    }
}