:where([class^="ri-"])::before {
    content: "\f3c2";
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #FFFFFF;
}

.nav-logo .logo-text {
    font-size: 22px;
    font-weight: bold;
    padding-top: 10px;
}

.nav-logo {
    display: flex;
    gap: 20px;
}

.nav-logo img{
    display: flex;
    border-radius: 50%;
    object-fit: cover;
}

.nav-logo img{
    width: 50px;
    height: 50px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.countdown-item {
    position: relative;
}

.countdown-item:not(:last-child)::after {
    content: ":";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: bold;
    color: #FF69B4;
}

.promo-card:hover .promo-overlay {
    opacity: 1;
}

.coupon-card {
    position: relative;
}

.coupon-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    width: 20px;
    height: 100%;
    background-image: radial-gradient(circle at 0 50%, transparent 10px, white 10px);
    background-size: 20px 20px;
    background-position: -10px center;
    background-repeat: repeat-y;
}

.coupon-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: -10px;
    width: 20px;
    height: 100%;
    background-image: radial-gradient(circle at 100% 50%, transparent 10px, white 10px);
    background-size: 20px 20px;
    background-position: 10px center;
    background-repeat: repeat-y;
}

.custom-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.custom-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e2e8f0;
    transition: .4s;
    border-radius: 24px;
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.switch-slider {
    background-color: #FF69B4;
}

input:checked+.switch-slider:before {
    transform: translateX(20px);
}

.filter-button.active {
    background-color: #FF69B4;
    color: white;
}