/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */

.site-footer {
	margin-top: 30px;
	font-size: 0.9rem;
	line-height: 1.6;
    border-top: 1px solid black;
}

.footer-container {
	max-width: 1124px;
	margin: 0 auto;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 3rem;
}

.footer-info {
	flex: 1;
	min-width: 250px;
}

.footer-nav {
	flex: 1;
	min-width: 250px;
}

.footer-nav .menu,
.footer-nav .footer-menu {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 1.5rem;
}

.footer-nav li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-nav a {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
}

.footer-nav a:hover {
	color: #c00;
}

.site-info {
	flex: 1;
	min-width: 250px;
	padding-top: 1rem;
    padding-bottom: 1rem;
    float: left;
}

.site-info a {
	color: black;
	text-decoration: none;
}

.site-info a:hover {
	color: #c00;
}

.sep {
	opacity: 0.5;
	margin: 0 0.5rem;
}

/* Footer Widgets */
.footer-widget {
	margin-bottom: 1.5rem;
	padding: 0;
	background: transparent;
	border: none;
}

.footer-widget .widget-title {
	color: #fff;
	border-bottom-color: #c00;
	font-size: 1rem;
	margin-bottom: 0.75rem;
	display: block;
	padding-bottom: 0.5rem;
}

.footer-widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-widget li {
	list-style: none;
	margin: 0 0 0.5rem 0;
	padding: 0;
	border: none;
}

.footer-widget a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-widget a:hover {
	color: #c00;
	text-decoration: underline;
}

/* Footer Text */
.footer-text,
.footer-description {
	color: #ccc;
	line-height: 1.8;
	margin-bottom: 1rem;
}

.footer-text a,
.footer-description a {
	color: #c00;
	text-decoration: none;
}

.footer-text a:hover,
.footer-description a:hover {
	color: #fff;
	text-decoration: underline;
}

/* Back to Top Button */
.back-to-top {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #c00;
	color: #fff;
	border-radius: 50%;
	text-decoration: none;
	transition: background-color 0.3s ease, transform 0.3s ease;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top:hover {
	background-color: #900;
	transform: translateY(-3px);
}

/* Footer Social Links */
.footer-social {
	display: flex;
	gap: 1rem;
	margin: 1rem 0;
	list-style: none;
	margin-left: 0;
	padding: 0;
}

.footer-social li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #555;
	color: #fff;
	border-radius: 50%;
	text-decoration: none;
	transition: background-color 0.3s ease, transform 0.3s ease;
	border: none;
}

.footer-social a:hover {
	background-color: #c00;
	transform: translateY(-3px);
	text-decoration: none;
}

.footer-social i {
	font-size: 1.2rem;
}

/* Footer Logo/Branding */
.footer-logo {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #c00;
	letter-spacing: 0.1em;
}

.footer-logo a {
	color: #c00;
	text-decoration: none;
}

.footer-logo a:hover {
	color: #fff;
	text-decoration: none;
}

/* Copyright */
.right {
    float: right;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.copyright {
	text-align: center;
	padding: 2rem 0 0 0;
	border-top: 1px solid #555;
	margin-top: 2rem;
	color: #aaa;
	font-size: 0.85rem;
}

.copyright a {
	color: #c00;
	text-decoration: none;
}
.copyright a:hover {
	color: #fff;
	text-decoration: underline;
}

/* Footer Column Layout */
.footer-columns {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-column {
	padding: 0;
}

.footer-column h3 {
	color: #fff;
	font-size: 1rem;
	margin: 0 0 1rem 0;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid #c00;
	display: inline-block;
}

.footer-column p {
	margin: 0;
	color: #ccc;
	line-height: 1.8;
}

.footer-column ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-column li {
	list-style: none;
	margin: 0 0 0.5rem 0;
	padding: 0;
}

.footer-column a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-column a:hover {
	color: #c00;
	text-decoration: underline;
}

/* Payment Methods */
.footer-payment-methods {
	display: flex;
	gap: 0.75rem;
	margin: 1rem 0;
	align-items: center;
}

.footer-payment-methods img {
	height: 24px;
	width: auto;
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.footer-payment-methods img:hover {
	opacity: 1;
}

a[href="https://www.monsterinsights.com/?utm_source=verifiedBadge&utm_medium=verifiedBadge&utm_campaign=verifiedbyMonsterInsights"] {
	display: none;
}
