/* General Body Styles */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
body {
	margin: 0;
	font-family: Arial, sans-serif;
	color: #333;
}

/* Sticky Top Bar (Blue Bar with Contact Info) */
.sticky-top-bar {
	top: 0;
	width: 100%;
	background-color: #0d1a47;
	/* Dark blue background */
	color: #fff;
	z-index: 1030;
	/* Higher z-index to ensure it's on top of everything */
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	/* Subtle shadow */
	display: flex;
	/* Use flexbox for vertical alignment */
	align-items: center;
	/* Center content vertically */
}

.sticky-top-bar .header-contact {
	font-size: 0.85rem;
}

/* Remove logo specific styles from here as it's moved */
/* .sticky-top-bar .header-logo { ... } */

/* Sticky Navigation Bar (White Bar with Logo and Links) */
.sticky-navbar {

	/* This makes the nav bar stick right below the top bar */
	width: 100%;
	background-color: #fff;
	padding: 0.5rem 0;
	/* Adjust vertical padding for the whole nav bar */
	z-index: 1020;
	/* Lower z-index than top-bar, but higher than content/hero */
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	/* Subtle shadow */
}

.sticky-navbar .navbar-logo {
	max-height: 70px;
	/* Adjust logo size for the white area */
	width: auto;

}

.sticky-navbar .navbar-nav .nav-link {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.1rem;
	color: #333;
	padding: 0.5rem 1rem;
	font-weight: 600;
	transition: color 0.3s ease-in-out;
}

.sticky-navbar .navbar-nav .nav-link:hover {
	color: #0d1a47;
}

.sticky-navbar .navbar-nav .nav-item {
	margin-bottom: 5px;
}

/* Hero Section with Fixed Background Image */
.hero-section {
	height: 600px;
	/* Define the height of the area where the fixed image will show */
	background-image: url('images/banner.jpg');
	/* Replace with the actual path to your image */
	background-size: cover;
	/* Ensures the image covers the section */
	background-position: center;
	/* Centers the image within the section */
	background-repeat: no-repeat;
	/* Do not repeat the image */
	background-attachment: fixed;
	/* THIS IS THE KEY: Makes the background image fixed relative to the viewport */
	z-index: 0;
	/* Ensures it's behind the scrolling content and sticky headers */
}

/* Main Content Area */
.main-content-area {
	padding-top: 40px;
	/* Padding for the content inside this area */
	padding-bottom: 40px;
	background-color: #fff;
	/* OPAQUE BACKGROUND: This covers the fixed image as you scroll */
	position: relative;
	/* Creates a new stacking context for z-index to work */
	z-index: 1;
	/* Higher z-index than .hero-section so it scrolls ON TOP of the fixed image */
	box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.05);
	/* Optional: Shadow for a subtle lift effect */
	min-height: 100vh;
	/* Ensure enough content to demonstrate scrolling past the image */
}

/* Mobile Responsiveness */
@media (max-width: 767.98px) {
	.sticky-top-bar .header-contact {
		display: flex;
		/* Use flexbox for better alignment on mobile */
		flex-direction: column;
		/* Stack contact info vertically */
		align-items: center;
		/* Center items horizontally */
	}

	/* Adjust top bar height for mobile */
	.sticky-top-bar {
		height: 50px;
	}

	/* Logo is now in the nav bar, so remove its centering from top-bar */
	/* .sticky-top-bar .col-12.col-md-4.text-center { text-align: center !important; } */

	/* Adjust top for sticky nav bar on mobile */
	.sticky-navbar {
		top: 50px;
		/* Equal to the mobile height of the top bar */
		padding: 0.25rem 0;
		/* Less padding on mobile */
	}

	.sticky-navbar .navbar-logo {
		max-height: 50px;
		/* Smaller logo on mobile */
	}

	.sticky-navbar .navbar-nav {
		flex-direction: column;
		text-align: center;
		width: 100%;
		margin-top: 5px;
		display: flex;
		justify-content: center;
	}


}


/* --- Odor Eliminating Insoles Section --- */
.odor-insoles-section {
	background-color: #e6e8ec;
	/* Light background as per image */
	color: #333;
}

.odor-insoles-section .section-title {
	font-size: 2.5rem;
	/* Large, bold title */
	font-weight: 700;
	line-height: 1.3;
}

/* Feature Cards */
.odor-insoles-section .feature-card {
	background-color: #fff;
	/* White background for cards */
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
	/* Subtle shadow */
	min-height: 150px;
	/* Ensure cards have similar height */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.odor-insoles-section .feature-card .card-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: #0d1a47;
	/* Dark blue color */
	margin-bottom: 0.75rem;
}

.odor-insoles-section .feature-card .card-text {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #555;
}

/* Product Display */
.odor-insoles-section .product-display {
	padding-top: 30px;
}

.odor-insoles-section .product-main-img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	/* Shadow for the product image */
}

.odor-insoles-section .product-label {
	font-size: 1.8rem;
	/* Large 'Etsy' text */
	font-weight: bold;
	color: #f36c0b;
	/* Etsy orange-like color */
	letter-spacing: 1px;
	text-transform: uppercase;
}

.odor-insoles-section .product-details {
	padding-left: 30px;
	/* Space between image and details on desktop */
}

.odor-insoles-section .product-details .company-name {
	font-size: 1rem;
	color: #777;
	margin-bottom: 0.5rem;
}

.odor-insoles-section .product-details .product-title {
	font-size: 2rem;
	font-weight: 700;
	color: #0d1a47;
	/* Dark blue */
	line-height: 1.2;
	margin-bottom: 1rem;
}

.odor-insoles-section .product-details .etsy-link {
	color: #0d1a47;
	/* Dark blue link */
	text-decoration: underline;
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 1rem;
	display: block;
	/* Ensure it takes its own line */
}

.odor-insoles-section .product-details .product-price {
	font-size: 1.8rem;
	font-weight: 700;
	color: #0d1a47;
	margin-top: 1.5rem;
	/* Space above price */
	margin-bottom: 0.5rem;
}

.odor-insoles-section .product-details .klarna-info {
	font-size: 0.9rem;
	color: #555;
	display: flex;
	align-items: center;
	gap: 5px;
	/* Space between elements */
}

.odor-insoles-section .product-details .klarna-info .klarna-amount {
	font-weight: bold;
}

.odor-insoles-section .product-details .klarna-info .klarna-logo {
	height: 3em;
	/* Adjust Klarna logo size */
	vertical-align: middle;
}

.odor-insoles-section .product-details .klarna-info .klarna-learn-more {
	color: #0d1a47;
	text-decoration: underline;
}

.odor-insoles-section .product-actions .share-link,
.odor-insoles-section .product-actions .view-details-link {
	color: #0d1a47;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
	/* Space between icon and text */
}

.odor-insoles-section .product-actions .share-link:hover,
.odor-insoles-section .product-actions .view-details-link:hover {
	color: #555;
}

/* Mobile Responsiveness for this section */
@media (max-width: 767.98px) {
	.odor-insoles-section .section-title {
		font-size: 1.8rem;
		margin-bottom: 3rem;
	}

	.odor-insoles-section .feature-card {
		min-height: auto;
		/* Remove fixed height on mobile */
		padding: 20px;
	}

	.odor-insoles-section .product-display {
		flex-direction: column;
		/* Stack image and details */
		align-items: center;
		/* Center them */
		text-align: center;
		/* Center text within details */
	}

	.odor-insoles-section .product-details {
		padding-left: 0;
		/* Remove left padding */
		padding-top: 20px;
		/* Add top padding */
	}

	.odor-insoles-section .product-details .product-title {
		font-size: 1.5rem;
	}

	.odor-insoles-section .product-details .product-price {
		font-size: 1.5rem;
	}

	.odor-insoles-section .product-actions {
		flex-direction: column;
		/* Stack share and view details links */
		gap: 15px;
		/* Space between stacked links */
		margin-top: 20px !important;
	}
}

/* --- Product Image Gallery Styles --- */
.product-image-gallery {
	position: relative;
	width: 100%;
	max-width: 400px;
	/* Adjust max width for the gallery container */
	text-align: center;
}

.main-image-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	/* Ensures arrows don't spill */
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-main-img {
	width: 100%;
	height: auto;
	display: block;
	cursor: pointer;
	/* Indicate it's clickable for lightbox */
}

.gallery-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	border: none;
	height: 30px;
	width: 30px;
	font-size: 1em;
	line-height: 1;
	border-radius: 50%;
	transition: background-color 0.3s ease;
	z-index: 10;
}

.gallery-nav:hover {
	background-color: rgba(0, 0, 0, 0.7);
}

.prev-arrow {
	left: 10px;
}

.next-arrow {
	right: 10px;
}

.thumbnail-gallery {
	display: flex;
	justify-content: center;
	gap: 10px;
	/* Space between thumbnails */
	margin-top: 15px;
	flex-wrap: wrap;
	/* Allow thumbnails to wrap on smaller screens */
}

.thumbnail-img {
	width: 70px;
	/* Thumbnail size */
	height: 70px;
	object-fit: cover;
	border: 2px solid transparent;
	border-radius: 4px;
	cursor: pointer;
	transition: border-color 0.3s ease, transform 0.2s ease;
}

.thumbnail-img:hover {
	transform: translateY(-2px);
}

.thumbnail-img.active {
	border-color: #0d1a47;
	/* Highlight active thumbnail */
}

/* Lightbox Styles */
#imageLightbox .modal-content {
	background-color: transparent;
	/* Full transparency */
}

#imageLightbox .modal-body {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.85);
	/* Dark overlay for lightbox */
	border-radius: 8px;
	height: 95vh;
}

.modal-xl {
	width: 100% !important;
}

.lightbox-img {
	max-height: 85vh;
	/* Max height for the image in lightbox */
	max-width: 90%;
	/* Max width for the image */
	object-fit: contain;
	/* Contain the image within its bounds */
	border-radius: 8px;
}

.btn-close-lightbox {
	position: absolute;
	top: 15px;
	right: 15px;
	background: none;
	border: none;
	font-size: 2rem;
	color: #fff;
	cursor: pointer;
	z-index: 10;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.btn-close-lightbox:hover {
	opacity: 1;
}

.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(255, 255, 255, 0.2);
	color: #fff;
	border: none;
	padding: 10px 15px;
	cursor: pointer;
	font-size: 2rem;
	line-height: 1;
	border-radius: 5px;
	transition: background-color 0.3s ease;
	z-index: 5;
}

.lightbox-nav:hover {
	background-color: rgba(255, 255, 255, 0.4);
}

.lightbox-prev {
	left: 20px;
}

.lightbox-next {
	right: 20px;
}

.lightbox-thumbnails {
	gap: 10px;
	padding: 10px;
}

.lightbox-thumbnails .thumbnail-img {
	width: 60px;
	/* Slightly smaller thumbnails in lightbox */
	height: 60px;
	border-color: transparent;
	/* Reset border from main thumbnails */
}

.lightbox-thumbnails .thumbnail-img.active {
	border-color: #9333ea;
	/* Highlight active thumbnail in lightbox with a different color */
}

/* Mobile adjustments for gallery */
@media (max-width: 767.98px) {
	.product-image-gallery {
		max-width: 100%;
		/* Allow gallery to take full width on mobile */
	}

	.gallery-nav {
		padding: 5px 10px;
		font-size: 1.2rem;
	}

	.thumbnail-img {
		width: 60px;
		height: 60px;
	}

	.lightbox-nav {
		padding: 8px 12px;
		font-size: 1.5rem;
	}

	.lightbox-prev {
		left: 10px;
	}

	.lightbox-next {
		right: 10px;
	}

	.btn-close-lightbox {
		font-size: 1.5rem;
		top: 10px;
		right: 10px;
	}

	.lightbox-thumbnails .thumbnail-img {
		width: 50px;
		height: 50px;
	}
}





/* --- Defensive Footwear / About Dr. Haces Section --- */
.defensive-footwear-section {
	background-color: #f8f9fa;
	/* Light grey background */
	color: #333;
}

.defensive-footwear-section .section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #0d1a47;
	/* Dark blue */
	line-height: 1.3;
}

.defensive-footwear-section .section-paragraph-large {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #555;
	max-width: 900px;
	/* Constrain width for readability */
	margin-left: auto;
	margin-right: auto;
}

.defensive-footwear-section .about-drhaces-block {
	background-color: #fff;
	/* White background for this content block */
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	/* Subtle shadow */
	padding: 30px;
	margin-top: 50px;
	/* Space from the top text block */
}

.defensive-footwear-section .about-drhaces-img {
	max-width: 100%;
	/* Ensure image is responsive */
	height: auto;
	border-radius: 8px;
	/* Match image's rounded corners */
}

.defensive-footwear-section .image-caption {
	font-size: 0.9rem;
	color: #777;
	text-align: center;
	margin-top: 10px;
}

.defensive-footwear-section .about-title {
	font-size: 2rem;
	font-weight: 700;
	color: #0d1a47;
	/* Dark blue */
	margin-bottom: 1rem;
}

.defensive-footwear-section .about-text {
	font-size: 1rem;
	line-height: 1.7;
	color: #555;
	margin-bottom: 1rem;
}

.defensive-footwear-section .about-link {
	color: #0d1a47;
	text-decoration: underline;
	transition: color 0.3s ease;
}

.defensive-footwear-section .about-link:hover {
	color: #9333ea;
	/* Purple on hover */
}

.defensive-footwear-section .visit-doctor-haces-btn {
	background-color: #0d1a47;
	/* Dark blue button */
	border-color: #0d1a47;
	color: #fff;
	padding: 0.75rem 2rem;
	border-radius: 50px;
	/* Pill shape */
	font-weight: 600;
	transition: background-color 0.3s ease, border-color 0.3s ease;
}

.defensive-footwear-section .visit-doctor-haces-btn:hover {
	background-color: #1a306f;
	/* Slightly lighter blue on hover */
	border-color: #1a306f;
}


/* Mobile Responsiveness for Defensive Footwear section */
@media (max-width: 767.98px) {
	.defensive-footwear-section .section-title {
		font-size: 1.8rem;
	}

	.defensive-footwear-section .section-paragraph-large {
		font-size: 0.95rem;
	}

	.defensive-footwear-section .about-drhaces-block {
		padding: 20px;
		margin-top: 30px;
	}

	.defensive-footwear-section .about-title {
		font-size: 1.5rem;
		margin-top: 20px;
		/* Space after image on mobile */
	}

	.defensive-footwear-section .about-text {
		font-size: 0.9rem;
	}

	.defensive-footwear-section .visit-doctor-haces-btn {
		width: 100%;
		max-width: 250px;
		margin-left: auto;
		margin-right: auto;
		display: block;
		/* Make it a block element to center with auto margins */
	}
}






/* --- Podophyllus Insole Call to Action Section --- */
.podophyllus-cta-section {
	background-image: url('images/shoes.jpg');
	/* Background image from the provided file */
	background-size: cover;
	background-position: bottom center;
	/* Position the image at the bottom center */
	background-repeat: no-repeat;
	background-attachment: fixed;
	/* THIS IS THE KEY FOR PARALLAX */
	display: flex;
	/* Use flexbox to center content vertically */
	align-items: center;
	/* Center content vertically */
	justify-content: center;
	/* Center content horizontally */
	padding: 50px 0;
	/* Add vertical padding */
}

.podophyllus-cta-section .cta-box {
	background-color: #f0f2f5;
	/* Light grey background for the box */
	border-radius: 15px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	/* More prominent shadow */
	max-width: 750px;
	/* Constrain box width */
	z-index: 2;
	/* Ensure the content box is above the background */
	position: relative;
	/* Needed for z-index to work against fixed background */
}

.podophyllus-cta-section .cta-title {
	font-size: 2.2rem;
	font-weight: 700;
	color: #0d1a47;
	/* Dark blue */
}

.podophyllus-cta-section .cta-description {
	font-size: 1.1rem;
	line-height: 1.6;
	color: #555;
	max-width: 450px;
	/* Constrain description width */
}

.podophyllus-cta-section .cta-btn {
	background-color: #4b6edb;
	/* Blue button color */
	border-color: #4b6edb;
	color: #fff;
	padding: 0.8rem 2.5rem;
	border-radius: 8px;
	/* Slightly rounded corners for buttons */
	font-weight: 600;
	font-size: 1rem;
	transition: background-color 0.3s ease, border-color 0.3s ease;
}

.podophyllus-cta-section .cta-btn:hover {
	background-color: #3a5cc7;
	/* Darker blue on hover */
	border-color: #3a5cc7;
}

/* Mobile Responsiveness for CTA Section */
@media (max-width: 767.98px) {
	.podophyllus-cta-section {
		min-height: 400px;
		padding: 30px 0;
		/* Parallax effect often looks less smooth or can cause issues on mobile. */
		/* It's common to disable background-attachment: fixed; for mobile devices. */
		background-attachment: scroll;
		/* Disable parallax on mobile */
	}

	.podophyllus-cta-section .cta-box {
		padding: 30px 20px;
		width: 90%;
		/* Adjust width on small screens */
	}

	.podophyllus-cta-section .cta-title {
		font-size: 1.8rem;
	}

	.podophyllus-cta-section .cta-description {
		font-size: 0.95rem;
		max-width: 90%;
	}

	.podophyllus-cta-section .cta-btn {
		padding: 0.6rem 1.5rem;
		font-size: 0.9rem;
	}
}



/* --- Customer Reviews Section --- */
.customer-reviews-section {
	background-color: #e6e8ec;
	/* Light grey background from image_931546.png*/
	color: #333;
	padding-top: 60px;
	padding-bottom: 60px;
}

.customer-reviews-section .section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #0d1a47;
	/* Dark blue */
	line-height: 1.3;
}

.customer-reviews-section .testimonial-card {
	background-color: #f0f2f5;
	/* Slightly lighter card background */
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	/* Subtle shadow */
	/* min-height: 300px; */
	/* REMOVED or COMMENTED OUT: align-items-stretch handles height */
	display: flex;
	/* Make the card itself a flex container */
	flex-direction: column;
	/* Stack content vertically */
	justify-content: flex-start;
	/* Align content to the top */
}

.customer-reviews-section .reviewer-name {
	font-size: 1.4rem;
	font-weight: 600;
	color: #0d1a47;
	/* Dark blue for name */
}

.customer-reviews-section .reviewer-name a {
	color: #0d1a47;
	/* Dark blue for name */
}

.customer-reviews-section .review-text {
	font-size: 0.95rem;
	line-height: 1.7;
	color: #555;
	flex-grow: 1;
	/* Allows text to grow and push other content */
}

/* Mobile Responsiveness for Customer Reviews */
@media (max-width: 767.98px) {
	.customer-reviews-section {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.customer-reviews-section .section-title {
		font-size: 2rem;
		margin-bottom: 30px !important;
	}

	.customer-reviews-section .testimonial-card {
		min-height: auto;
		/* Ensure no fixed height on mobile */
		padding: 20px;
	}

	.customer-reviews-section .reviewer-name {
		font-size: 1.2rem;
	}

	.customer-reviews-section .review-text {
		font-size: 0.9rem;
	}

	/* Add vertical spacing between cards on mobile */
	.customer-reviews-section .row.gy-4>[class*="col-"] {
		padding-bottom: 20px;
	}
}



/* --- FOOTER STYLES --- */
.main-footer {
	background-color: #0d1a47;
	/* Dark blue background */
	color: #fff;
	padding-top: 50px;
	/* Adjust top padding for footer */
}

/* Removed Newsletter Section styles */
/* .main-footer .newsletter-section { ... } */
/* .main-footer .footer-heading { ... } */
/* .main-footer .footer-subheading { ... } */
/* .main-footer .newsletter-form { ... } */
/* .main-footer .newsletter-form .form-control { ... } */
/* .main-footer .newsletter-form .form-control::placeholder { ... } */
/* .main-footer .newsletter-form .form-control:focus { ... } */
/* .main-footer .newsletter-form .btn-outline-secondary { ... } */
/* .main-footer .newsletter-form .btn-outline-secondary:hover { ... } */

/* Footer Widgets Section */
.main-footer .footer-widgets {
	/* Removed padding-top and border-top as newsletter section is gone */
	padding-top: 0;
	/* Resetting, actual padding is from .container .py-5 */
	border-top: none;
	/* Removing the border */
}

.main-footer .widget-title {
	font-size: 1.4rem;
	font-weight: bold;
	margin-bottom: 1.5rem;
	color: #fff;
}

.main-footer .footer-links {
	padding-left: 0;
}

.main-footer .footer-links li {
	margin-bottom: 10px;
}

.main-footer .footer-links a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.main-footer .footer-links a:hover {
	color: #a0d1ff;
	/* Lighter blue on hover */
}

.main-footer .about-text {
	font-size: 0.95rem;
	line-height: 1.6;
	opacity: 0.8;
	margin-bottom: 1rem;
}

.main-footer .about-text.bold-text {
	font-weight: bold;
	opacity: 1;
}

.main-footer .btn-follow-on-shop {
	background-color: #5433EB;
	/* Purple color from image */
	color: #fff;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	/* Pill shape */
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	transition: background-color 0.3s ease;
	display: inline-flex;
	/* Allows icon and text to align */
	align-items: center;
	gap: 8px;
	/* Space between icon and text */
}

.main-footer .btn-follow-on-shop:hover {
	background-color: #401be5;
	/* Slightly lighter purple on hover */
	color: #fff;
}

/* Copyright Section */
.main-footer .footer-copyright {
	background-color: rgba(0, 0, 0, 0.1);
	/* Slightly darker background for copyright */
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.85rem;
}

/* Mobile Responsiveness for Footer */
@media (max-width: 767.98px) {
	.main-footer {
		padding-top: 30px;
		text-align: center;
		/* Center align text on small screens */
	}

	/* Removed newsletter section margin-bottom */
	/* .main-footer .newsletter-section { margin-bottom: 30px; } */

	/* Removed newsletter specific font size adjustments */
	/* .main-footer .footer-heading { ... } */
	/* .main-footer .footer-subheading { ... } */
	/* .main-footer .newsletter-form { ... } */

	.main-footer .footer-widgets {
		padding-top: 20px;
		/* Adjust padding for widgets section */
	}

	.main-footer .widget-title {
		margin-bottom: 1rem;
		font-size: 1.2rem;
	}

	.main-footer .footer-links {
		margin-bottom: 2rem;
		/* Add space below quick links */
	}

	.main-footer .about-text {
		text-align: left;
		/* Keep about text left-aligned for readability */
		margin-bottom: 1.5rem;
	}

	.main-footer .btn-follow-on-shop {
		width: 100%;
		/* Full width button on small screens */
		max-width: 250px;
		/* Max width for button */
		margin-left: auto;
		margin-right: auto;
		justify-content: center;
		/* Center icon and text within button */
	}
}