footer.footer-container {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #000 100%);
  padding: 80px 0 0 0;
  position: relative;
  overflow: hidden;
}
footer.footer-container .container {
  max-width: 1400px;
  padding: 0 40px;
}
footer.footer-container .main-footer {
	padding-bottom: 60px;
}
footer.footer-container .main-footer .footer-columns {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;

	.footer-column-1 {
		display: flex;
		flex-direction: column;
		gap: 32px;

		.widget-title {
			font-size: 28px;
			font-weight: 900;
			color: white;
			margin-bottom: 52px;
			letter-spacing: -1px;
			text-transform: uppercase;
		}

		.textwidget p {
			font-size: 16px;
    		line-height: 1.6;
    		color: rgba(255, 255, 255, 0.8);
			margin-bottom: 32px;
		}
	}

	.widget-title {
		display: flex;
		align-items: center;
		gap: 8px;
		font-size: 18px;
		font-weight: 700;
		color: white;
		margin-bottom: 24px;
		text-transform: uppercase;
		letter-spacing: 0.5px;
	}
}

.footer-column .menu {
	li {


		a {
			display: flex;
			align-items: center;
			justify-content: space-between;
			padding: 16px 20px;
			background: rgba(255, 255, 255, 0.05);
			border: 1px solid transparent;
			border-radius: 8px;
			text-decoration: none;
			color: rgba(255, 255, 255, 0.8);
			font-weight: 500;
			font-size: 16px;
			transition: all 0.3s ease;
			position: relative;
			overflow: hidden;
			min-height: 20px;
			box-sizing: border-box;
		}

		a::before {
			content: '';
			position: absolute;
			top: 0;
			left: -100%;
			width: 100%;
			height: 100%;
			background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
			transition: left 0.3s ease;
		}

		a:hover {
			background: rgba(102, 126, 234, 0.1);
			border-color: rgba(102, 126, 234, 0.3);
			color: white;
			transform: translateX(4px);
		}

		a:hover::before {
			left: 100%;
		}
	}

	.chat-icon {
		font-size: 18px;
    	opacity: 0.9;
	}
	.new-badge-menu {
		padding: 2px 8px;
		border-radius: 12px;
		font-size: 10px;
		font-weight: 800;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		background: linear-gradient(135deg, #3498db, #2980b9);
    	color: white;
	}
}


footer.footer-container .bottom-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 0;
	background: rgba(0, 0, 0, 0.3);
	max-width: 1320px;
}
footer.footer-container .bottom-footer .footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;

	.footer-column-1 {
		color: #999;
    	font-size: 14px;
    	font-weight: 500;
	}

	.footer-column-2 {
		display: flex;
		align-items: center;
		gap: 40px;
		.payment-methods {
			display: flex;
			align-items: center;
			gap: 16px;
		}
		.payment-text {
			color: #999;
			font-size: 14px;
			font-weight: 500;
		    text-transform: uppercase;
   		 	letter-spacing: 1px;
		}

		.payment-icons {
			display: flex;
    		gap: 8px;
		}

		.payment-icon {
			width: 40px;
			height: 24px;
			background: rgba(255, 255, 255, 0.1);
			border: 1px solid rgba(255, 255, 255, 0.2);
			border-radius: 4px;
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 10px;
			font-weight: 700;
			color: #ccc;
			cursor: pointer;
			transition: all 0.2s ease;
		}
		.payment-icon:hover {
		    background: rgba(255, 255, 255, 0.2);
    		color: white;
			transform: translateY(-2px);
    		box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
		}

		.footer-scroll-top {
			display: flex;
			align-items: center;
			gap: 8px;
			padding: 12px 20px;
			background: rgba(255, 255, 255, 0.1);
			border: 1px solid rgba(255, 255, 255, 0.2);
			border-radius: 8px;
			color: white;
			font-size: 14px;
			font-weight: 600;
			text-transform: uppercase;
			letter-spacing: 0.5px;

			.btn-arrow {
				font-size: 16px;
			}
		}
		.footer-scroll-top:hover {
			background: rgba(255, 255, 255, 0.2);
    		transform: translateY(-2px);
		}
	}

}


.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 25s infinite ease-in-out;
    opacity: 0.15;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #4834d4, #686de0);
    bottom: -150px;
    right: -150px;
    animation-delay: -12s;
}

.footer-socials-new {
	display: flex;
	flex-wrap: wrap;
    column-gap: 12px;
	row-gap: 16px;

	.social-label {
		width: 100%;
		font-size: 14px;
		font-weight: 700;
		color: rgba(255, 255, 255, 0.9);
		text-transform: uppercase;
		letter-spacing: 1px;
	}
	a {
		display: flex;
		align-items: center;
		gap: 8px;
		padding: 12px 16px;
		background: rgba(255, 255, 255, 0.05);
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 12px;
		text-decoration: none;
		color: white;
		transition: all 0.3s ease;
		font-size: 12px;
		font-weight: 600;

		svg {
			width: 16px;
    		height: 16px;
		}
	}

	a.instagram:hover {
		background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    	border-color: transparent;
	}
	a.tiktok:hover {
		background: #000;
   	 	border-color: transparent;
	}
	a.pinterest:hover {
		background: #BD081C !important;
    	border-color: transparent !important;
	}
}



@keyframes float {
	0%, 100% {
    transform: translate(0, 0) rotate(0deg);
	}
	50% {
		transform: translate(50px, -50px) rotate(180deg);
	}
}


@media (max-width: 768px) {
	footer.footer-container .main-footer .footer-columns {
		grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
	}

	.footer-socials-new {
		justify-content: center;
	}

	footer.footer-container .container {
		padding: 0 20px;
	}

	footer.footer-container .main-footer {
		padding-bottom: 20px;
	}

	footer.footer-container .bottom-footer .footer-columns {
		flex-direction: column;
        gap: 24px;
        text-align: center;
		padding: 32px 20px;

		.footer-column-2 {
		    flex-direction: column;
        	gap: 20px;

			.payment-methods {
				flex-direction: column;
				align-items: center;
			}
		}
	}
}