/**
 * OniGrow Footer Styles
 * Extracted from header-footer.php inline <style> block
 */

/* Footer Styles */
.onigrow-footer {
	background: #ffffff;
	color: #1a1a1a;
	padding: 60px 20px 30px;
}

.onigrow-footer * {
	box-sizing: border-box;
  	text-align: center;
}

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

/* Trustpilot Section */
.footer-trustpilot {
	text-align: center;
	margin-bottom: 50px;
	padding-bottom: 40px;
	border-bottom: 1px solid #e0e0e0;
}

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

.footer-column h3 {
	color: #e1306c;
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 20px 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

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

.footer-column ul li {
	margin-bottom: 12px;
}

.footer-column a {
	color: #1a1a1a;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
	position: relative;
}

.footer-column a:hover {
	color: #e1306c;
	transform: translateX(5px);
}

.footer-column a::before {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: #e1306c;
	transition: width 0.3s ease;
}

.footer-column a:hover::before {
	width: 100%;
}

/* Social Icons */
.footer-social {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #f8f8f8;
	border: 1px solid #e0e0e0;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: #e1306c;
	border-color: #e1306c;
	transform: translateY(-3px);
}

.social-link svg {
	width: 20px;
	height: 20px;
	fill: #1a1a1a;
	transition: fill 0.3s ease;
}

.social-link:hover svg {
	fill: #ffffff;
}

/* Contact Info */
.contact-info {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #1a1a1a;
}

.contact-item svg {
	width: 18px;
	height: 18px;
	fill: #e1306c;
	flex-shrink: 0;
}

/* Payment Methods */
.footer-payment {
	text-align: center;
	padding: 30px 0;
	border-top: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
}

.payment-methods-grid {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	margin: 0 auto;
}

.payment-method-item {
	background: #f8f8f8;
	padding: 12px 16px;
	border-radius: 8px;
	border: 1px solid #e0e0e0;
	transition: all 0.3s ease;
}

.payment-method-item:hover {
	background: #ffffff;
	border-color: #e1306c;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(225, 48, 108, 0.15);
}

.payment-method-item img {
	height: 24px;
	width: auto;
	display: block;
	opacity: 0.9;
	transition: opacity 0.3s ease;
}

.payment-method-item:hover img {
	opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
	text-align: center;
	padding-top: 30px;
}

.footer-company-info {
	font-size: 14px;
	color: #666666;
	margin-bottom: 15px;
	line-height: 1.6;
}

.footer-disclaimer {
	font-size: 13px;
	color: #999999;
	font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
	.onigrow-footer {
		padding: 40px 15px 20px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.footer-column {
		text-align: center;
	}

	.footer-social {
		justify-content: center;
	}

	.contact-info {
		align-items: center;
	}

	.footer-trustpilot {
		margin-bottom: 40px;
		padding-bottom: 30px;
	}

	.payment-methods-grid {
		gap: 15px;
	}

	.payment-method-item {
		padding: 10px 14px;
	}
}

@media (max-width: 480px) {
	.footer-column h3 {
		font-size: 16px;
	}

	.footer-column a {
		font-size: 14px;
	}

	.payment-methods-grid {
		gap: 12px;
	}

	.payment-method-item {
		padding: 8px 12px;
	}

	.payment-method-item img {
		height: 20px;
	}
}

/* Working hours text */
.footer-hours { color: #666; line-height: 1.6; }

/* Contact items: fit-content so underline matches text width */
.contact-item {
	display: inline-block;
	width: fit-content;
}
