.site-footer {
    padding: 0 !important;
    padding-top: 25px !important;
    background-color: transparent !important;
}

wc-block-components-product-name{
	text-align: left !important;
}
.site-footer .col-full {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
.footer-widgets, .site-info, .storefront-handheld-footer-bar {
    display: none !important;
}

.steak-site-footer {
    padding: 0;
    background-color: transparent;
    margin: 0;
}

.steak-footer-navigation {
	background-color: var(--background-color);
	padding: 65px 0 15px;
	position: relative;
	overflow: hidden;
}

.steak-footer-navigation::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
}

.steak-nav-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
}

.steak-footer-logo a {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: var(--text-color);
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.steak-footer-logo img {
	height: 60px;
	margin-right: 15px;
}

.steak-nav-links-wrapper {
	display: flex;
	gap: 60px;
	flex-wrap: wrap;
}

.steak-nav-section {
	margin-bottom: 20px;
}

.steak-nav-title {
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
	text-transform: uppercase;
	position: relative;
	display: inline-block;
}

.steak-nav-title::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 40px;
	height: 2px;
	background-color: var(--primary-color);
}

.steak-nav-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.steak-nav-links li {
	margin-bottom: 10px;
}

.steak-nav-links a {
	color: var(--text-light);
	text-decoration: none;
	font-size: 15px;
	transition: var(--transition);
	position: relative;
	padding-left: 0;
}

.steak-nav-links a:hover {
	color: var(--text-color);
	padding-left: 5px;
}

.steak-nav-links a::before {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background-color: var(--primary-color);
	transition: var(--transition);
}

.steak-nav-links a:hover::before {
	width: 100%;
}

.steak-contactInfo-section {
	color: var(--text-light);
}

.steak-contactInfo-section p {
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	font-size: 15px;
}

.steak-contactInfo-section p i {
	margin-right: 10px;
	color: var(--primary-color);
}

.steak-social-icons {
	display: flex;
	gap: 15px;
	margin-top: 15px;
}

.steak-social-icon {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background-color: var(--card-background);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-light);
	transition: var(--transition);
	text-decoration: none;
}

.steak-social-icon:hover {
	background-color: var(--primary-color);
	color: #fff;
	transform: translateY(-3px);
}

.steak-main-footer {
	background-color: var(--card-background);
	color: var(--text-light);
	padding: 25px 0;
	border-top: 1px solid var(--border-color);
}

.steak-footer-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.steak-copyright {
	font-size: 14px;
}

.steak-footer-bottom-links {
	display: flex;
	gap: 25px;
}

.steak-footer-bottom-links a {
	color: var(--text-light);
	text-decoration: none;
	font-size: 14px;
	transition: var(--transition);
}

.steak-footer-bottom-links a:hover {
	color: var(--primary-color);
}

.steak-back-to-top {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background-color: var(--primary-color);
	color: #fff;
	border-radius: 50%;
	position: fixed;
	bottom: 30px;
	right: 90px;
	text-decoration: none;
	box-shadow: var(--shadow-md);
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	z-index: 9999;
}

.steak-back-to-top.visible {
	opacity: 1;
	visibility: visible;
}

.steak-back-to-top:hover {
	background-color: var(--primary-hover);
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.steak-newsletter {
	width: 100%;
	max-width: 380px;
}

.steak-newsletter h3 {
	color: var(--text-color);
	font-size: 18px;
	margin-bottom: 15px;
}

.steak-newsletter p {
	margin-bottom: 15px;
	font-size: 14px;
	color: var(--text-light);
}

.steak-newsletter-form {
	display: flex;
	height: 45px;
}

.steak-newsletter-form input {
	flex: 1;
	border: none;
	background-color: var(--card-background);
	padding: 0 15px;
	border-radius: var(--border-radius) 0 0 var(--border-radius);
	color: var(--text-color);
	font-size: 14px;
}

.steak-newsletter-form input::placeholder {
	color: var(--text-light);
}

.steak-newsletter-form button {
	background-color: var(--primary-color);
	color: #fff;
	border: none;
	padding: 0 20px;
	border-radius: 0 var(--border-radius) var(--border-radius) 0;
	cursor: pointer;
	font-weight: 600;
	transition: var(--transition);
}

.steak-newsletter-form button:hover {
	background-color: var(--primary-hover);
	box-shadow: var(--shadow-md);
}

.steak-quality-guarantees {
	width: 100%;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid var(--border-color);
}

.steak-quality-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--text-light);
}

.steak-quality-item i {
	color: var(--primary-color);
	font-size: 18px;
}

@media (max-width: 1024px) {
	.steak-nav-container, .steak-footer-container {
		flex-direction: column;
		align-items: flex-start;
	}

	.steak-newsletter {
		max-width: 100%;
		margin-top: 30px;
	}

	.steak-nav-links-wrapper {
		width: 100%;
		justify-content: space-between;
	}

	.steak-nav-section {
		margin-right: 0;
	}

	.steak-footer-container {
		text-align: center;
		align-items: center;
	}

	.steak-footer-bottom-links {
		margin-top: 15px;
	}
}

@media (max-width: 768px) {
	.steak-nav-links-wrapper {
		flex-direction: column;
		gap: 30px;
	}

	.steak-quality-guarantees {
		flex-direction: column;
		align-items: center;
	}
}