.mobile-menu, .cart-button-mob {
    display: none;
}

.mobile-menu {
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    z-index: 101;
}

.mobile-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-white-color);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 950px) {
	.navbar {
		flex-direction: row-reverse;
	}
	
    .mobile-menu,
	.cart-button-mob {
        display: flex;
    }
	
	.cart-button-mob {
		width: 38px;
		height: 38px;
	}

    .cart-button {
        display: none;
    }

    .nav-right {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-color);
        flex-direction: column;
        justify-content: flex-start;
        padding: 7rem 3rem 3rem 3rem;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.4s ease-in-out;
        z-index: 100;
    }

    .nav-right.active {
        transform: translateX(0);
        overflow-y: auto;
    }

    .nav-right a {
        font-size: var(--text-size-two);
        text-decoration: none;
        width: 100%;
    }

    .mobile-menu.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
    
    body.no-scroll {
        overflow: hidden;
    }
}

footer {
	border-top: 1px solid rgb(180 184 204 / 10%);
}

.footer_top {
	margin: 2rem 3rem
}

.footer-logo {
	display: flex;
    width: 200px;
	height: 64px;
	opacity: 0.2;
	filter: grayscale(100%);
}

.footer-logo img {
	width: 100%;
}

.footer_bottom {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: #000000;
	color: #fff;
    margin-top: 2.5rem;
}

.footer_bottom p {
	font-size: 0.8rem;
	opacity: 0.5;
}

.footer_top {
	display: flex;
    justify-content: space-between;
}

.subscribe {
	width: 45%;
    display: flex;
    flex-direction: column;
	gap: 1rem;
	padding: 2rem;
	background: rgb(180 184 204 / 10%);
	border-radius: 1rem;
}

.subscribe input[type="text"] {
    font-weight: 400;
    padding: 1rem;
    border: none;
    background-color: #fff;
    border-radius: 1rem;
    color: #505050;
    font-size: 1rem;
}

.subscribe p:first-child {
    font-weight: 700;
    font-size: var(--text-size-two);
    color: var(--text-white-color);
}

.subscribe p:nth-child(2) {
    font-size: var(--text-size-min);
}

.subscribe button {
    font-size: var(--text-size-min);
    background: var(--primary-color);
    color: var(--text-white-color);
    border: none;
    border-radius: 0.5rem;
    padding: 10px 15px;
	text-align: center;
}

@media (max-width: 500px) {
    .footer_top {
		flex-direction: column;
		gap: 4rem;
		margin: 2rem 1rem;
	}
	
	.subscribe {
		width: 100%;
	}
}

@media screen and (min-width: 500px) and (max-width: 768px) {
    .footer_top {
		flex-direction: column;
		gap: 4rem;
		margin: 2rem 1rem;
	}
	
	.subscribe {
		width: 80%;
	}
}

@media screen and (min-width: 768px) and (max-width: 980px) {
    .subscribe {
		width: 60%;
	}
}