/*
Theme Name: ZotParts Custom Theme
Theme URI: https://zotparts.com
Author: ZotParts
Author URI: https://zotparts.com
Description: A custom theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ZotParts-theme-one
*/

:root {
	--primary: #2b50aa;
	--secondary: #ff5e14;
	--dark: #222222;
	--light: #f5f5f5;
	--gray: #6b6b6b;
	--transition: all 0.3s ease;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
	color: var(--dark);
	line-height: 1.6;
	background-color: var(--light);
}

a {
	text-decoration: none;
	color: inherit;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Navigation */
header {
	background: white;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

.logo {
	font-size: 28px;
	font-weight: 700;
	color: var(--primary);
	list-style-type: none;
}

.logo span {
	color: var(--secondary);
}

.logo li::marker {
    display: none;
}

.mobile-toggle {
	display: none;
	font-size: 24px;
	cursor: pointer;
}

.navbar {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 15px;
	/*margin-bottom: 40px;*/
	backdrop-filter: blur(5px);
}

.nav-links {
	display: flex;
	list-style: none;
	/*justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;*/
}

.nav-links li {
	margin: 0 10px;
	position: relative;
	align-items: center;
    display: flex;
}

.nav-links a {
	color: var(--dark);
	font-weight: 500;
	padding: 5px 0;
	transition: var(--transition);
}

.nav-links a:hover {
	color: var(--primary);
}

.nav-links li:not(.button-container) a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: var(--transition);
}

.nav-links li:not(.button-container) a:hover::after {
	width: 100%;
}

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

.nav-links a:not(.btn-nav):hover {
	background: rgba(255, 255, 255, 0.15);
}

.button-container {
	margin-left: 10px;
}

/* 导航按钮样式 */
.btn-nav {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 12px 25px !important;
	font-size: 1rem;
	font-weight: 600 !important;
	text-decoration: none;
	border-radius: 50px;
	overflow: hidden;
	transition: all 0.4s ease !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	border: none;
	cursor: pointer;
	outline: none;
	z-index: 1;
	background: linear-gradient(45deg, #00ceac, #008a78);
	color: white !important;
}
	
.btn {
	display: inline-block;
	background: var(--secondary);
	color: white;
	padding: 12px 30px;
	border: none;
	border-radius: 5px;
	font-weight: 600;
	transition: var(--transition);
	cursor: pointer;
}

.btn-nav:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-nav:active {
	transform: translateY(1px);
}
		
.btn:hover {
	background: #e45412;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(255, 94, 20, 0.3);
}

.btn i {
	margin-left: 5px;
}

.pull-right {
    float: right !important;
}


.color-pulse:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background: linear-gradient(90deg,#00ceac00,#00ceac00 25%,#00ceac99,#00ceac00 75%,#00ceac00);
    transform: translate(-100%);
    animation: swipe 9s ease infinite;
    z-index: -1;
}

@keyframes swipe {
    0% {
        transform: translate(-100%);
    }
    20% {
        transform: translate(100%);
    }
    100% {
        transform: translate(100%);
    }
}

.section-title {
	text-align: center;
	margin-bottom: 50px;
}

.section-title h2 {
	font-size: 36px;
	color: var(--dark);
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
}

.section-title h2:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: var(--secondary);
}

.section-title p {
	color: var(--gray);
	max-width: 700px;
	margin: 0 auto;
}

/* Top Bar */
.top-bar {
	background: var(--dark);
	color: white;
	padding: 10px 0;
	font-size: 14px;
}

.top-bar-content {
	display: flex;
	justify-content: space-between;
}

.contact-info, .social-links {
	display: flex;
	align-items: center;
}

.contact-info span {
	margin-right: 20px;
	display: flex;
	align-items: center;
}

.contact-info i {
	margin-right: 8px;
	color: var(--secondary);
}

.social-links a {
	margin-left: 15px;
	color: white;
	transition: var(--transition);
}

.social-links a:hover {
	color: var(--secondary);
}


/* Hero Section */
.hero {
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/zotparts_bg_2.png');
	background-size: cover;
	background-position: center;
	color: white;
	padding: 120px 0;
	text-align: center;
}

.hero-content h1 {
	font-size: 48px;
	margin-bottom: 20px;
}

.hero-content p {
	font-size: 18px;
	max-width: 700px;
	margin: 0 auto 30px;
}

/* social-links*/
.social-links img {
    max-width: 100%;
}
.social-links img {
    vertical-align: middle;
}
.social-links img {
    border: 0;
}
.social-links li {
    margin-right: 10px;
	list-style: none;
}
.social-links a {
    width: 40px !important;
    display: block;
	margin-left: 0px;
}

/* About Us */
.about {
	padding: 30px 0;
	background: white;
}

.about-content {
	display: flex;
	align-items: center;
	gap: 50px;
}

.about-image {
	flex: 1;
	position: relative;
}

.about-image img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
	flex: 1;
}

.about-text h2 {
	font-size: 36px;
	margin-bottom: 20px;
	color: var(--dark);
}

.about-text p {
	margin-bottom: 15px;
	color: var(--gray);
}

.about-features {
	margin-top: 30px;
}

.feature {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.feature i {
	color: var(--secondary);
	font-size: 20px;
	margin-right: 15px;
}

/* Products */
.products {
	padding: 30px 0;
	background: #f9f9f9;
}

.categories-container {
	position: relative;
	overflow: hidden;
	padding: 20px 0;
}

.categories-scroll {
	display: flex;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding: 20px 0;
	cursor: grab;
}

.categories-scroll::-webkit-scrollbar {
	display: none;
}

.category-card {
	flex: 0 0 auto;
	width: 280px;
	margin: 0 15px;
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: var(--transition);
}

.category-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-image {
	height: 180px;
	overflow: hidden;
}

.category-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.category-card:hover .category-image img {
	transform: scale(1.1);
}

.category-name {
	padding: 20px;
	text-align: center;
	font-weight: 600;
	font-size: 18px;
	color: var(--dark);
}

.scroll-controls {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.scroll-btn {
	background: var(--primary);
	color: white;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin: 0 10px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

.scroll-btn:hover {
	background: var(--secondary);
}

/* Custom Parts */
/* Header Styling */
.custom-parts {
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('../images/zp_custom_parts.png');
	background-size: cover;
	background-position: center;
	color: white;
	padding: 120px 0;
	text-align: center;
}

.custom-parts h1 {
	font-size: 48px;
	margin-bottom: 20px;
}

.custom-parts p {
	font-size: 18px;
	max-width: 700px;
	margin: 0 auto 30px;
}

.btn-custom {
	display: inline-block;
	background: var(--secondary);
	color: white;
	padding: 15px 40px;
	border: none;
	border-radius: 5px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: var(--transition);
	text-decoration: none;
}

.btn-custom:hover {
	background: #e45412;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(255, 94, 20, 0.3);
}

/* Custom Services Section */
.custom-services {
	padding: 30px 0;
	background: white;
}

.section-title {
	text-align: center;
	margin-bottom: 60px;
}

.section-title h2 {
	font-size: 2.5rem;
	color: var(--dark);
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
}

.section-title h2:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: var(--secondary);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.service-card {
	background: #f9f9f9;
	border-radius: 10px;
	overflow: hidden;
	transition: var(--transition);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
	background: var(--primary);
	color: white;
	font-size: 2.5rem;
	padding: 30px;
	text-align: center;
}

.service-content {
	padding: 25px;
}

.service-content h3 {
	color: var(--primary);
	margin-bottom: 15px;
}

/* Process Section */
.process-section {
	padding: 30px 0;
	background: #f9f9f9;
}

.process-steps {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	margin-top: 50px;
}

.process-step {
	flex: 1;
	min-width: 250px;
	text-align: center;
	position: relative;
}

.step-number {
	width: 60px;
	height: 60px;
	background: var(--primary);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0 auto 20px;
}

.step-content h3 {
	color: var(--dark);
	margin-bottom: 15px;
}

/* Custom Gallery */
.gallery-section {
	padding: 30px 0;
	background: white;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin-top: 40px;
}

.gallery-item {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	height: 250px;
	/* Enable Flexbox */
	display: flex;

    /* Center the image horizontally and vertically */
	justify-content: center; /* Horizontally */
	align-items: center;     /* Vertically */
	background-color: var(--light);
}

.gallery-item img {
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
	transition: var(--transition);
	
}

.gallery-item:hover img {
	transform: scale(1.1);
}

.gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	color: white;
	padding: 20px;
	transform: translateY(100%);
	transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
	transform: translateY(0);
}

/* CTA Section */
.cta-section {
	padding: 100px 0;
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('../images/zotparts_bg.png');
	background-size: cover;
	background-position: center;
	color: white;
	text-align: center;
}

.cta-content {
	max-width: 800px;
	margin: 0 auto;
}

.cta-content h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.cta-content p {
	font-size: 1.2rem;
	margin-bottom: 40px;
}

.btn-light {
	display: inline-block;
	background: white;
	color: var(--primary);
	padding: 15px 40px;
	border: none;
	border-radius: 5px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: var(--transition);
	text-decoration: none;
}

.btn-light:hover {
	background: #f0f0f0;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
/*
@media (max-width: 768px) {
.custom-header h1 {
	font-size: 2.5rem;
}

.custom-header p {
	font-size: 1.2rem;
}

.process-steps {
	flex-direction: column;
}

.section-title h2 {
	font-size: 2rem;
}
*/

/* Brands Slider */
.carbrands {
	padding: 30px 0;
	background-color: var(--light);
}

.brands-section {
	/*padding: 60px 0;
	background: white;
	border-radius: 10px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);*/
	margin: 40px 0;
}

.brands-slider {
	width: 100%;
	overflow: hidden;
	position: relative;
	padding: 20px 0;
}

.brands-track {
	display: flex;
	width: calc(200px * 14);
	animation: scroll 30s linear infinite;
}

.brands-track:hover {
	animation-play-state: paused;
}


.brand-item:hover {
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.05);
}


@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-200px * 7));
	}
}

/* 供应商品牌区域样式 */
.featured-brands-section {
	position: relative;
	padding-top: 30px;
	background: #e8e8e8;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
	/*margin: 40px 0;*/
	z-index: 1;
}

.suppliers-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
	position: relative;
	overflow: hidden;
	transition: height 0.5s ease;
	min-height: 200px;
}

.suppliers-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	padding: 20px;
}

.brand-item {
	background: #f9f9f9;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 120px;
	width: 200px;
	opacity: 0.8;
	transition: var(--transition);
	position: relative;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
	object-fit: contain;
}

.brand-item img {
	max-width: 80%;
	max-height: 70px;
	object-fit: contain;
	transition: var(--transition);
}

.brand-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.brand-item:hover img {
	transform: scale(1.05);
}

/* 部分显示的品牌样式 */
.brand-item.partial {
	opacity: 0.3;
	filter: blur(1px);
}

.suppliers-container.expanded {
	min-height: auto;
}

.suppliers-container.expanded .brand-item.partial {
	opacity: 1;
	filter: none;
}

.suppliers-container .overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 120px;
	background: linear-gradient(to top, rgba(232, 232, 232, 1), rgba(232, 232, 232, 0));
	pointer-events: none;
	transition: opacity 0.5s ease;
}

.suppliers-container.expanded .overlay {
	opacity: 0;
}

/* Contact Us */
.contact {
	padding: 30px 0;
	background: white;
}

.contact-content {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}

.contact-info-block {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.contact-item {
	background: #f9f9f9;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	text-align: center;
}

.contact-item i {
	font-size: 36px;
	color: var(--primary);
	margin-bottom: 15px;
}

.contact-item h4 {
	font-size: 20px;
	margin-bottom: 10px;
}

.contact-item p {
	color: var(--gray);
}

.contact-form {
	flex: 1;
	background: #f9f9f9;
	padding: 40px;
	border-radius: 10px;
}

.contact-form-block {
	flex: 2;
}

.contact-form-block .form-group {
	margin-bottom: 20px;
}

.contact-form-block .control-label {
	font-weight: 600;
	display: block;
	margin-bottom: 5px;
}

.contact-form-block .form-control {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	transition: all 0.3s ease;
}

.contact-form-block .form-control:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 2px rgba(43, 80, 170, 0.2);
}

.contact-form-block .text-danger {
	color: red;
	margin-top: 5px;
	font-size: 14px;
}

/* new form */

.form-container {
	max-width: 800px;
	margin: 40px auto;
	background: white;
	border-radius: 10px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.form-header {
	background: var(--primary);
	color: white;
	padding: 30px;
	text-align: center;
}

.form-header h2 {
	font-size: 28px;
	margin-bottom: 10px;
}

.form-header p {
	opacity: 0.9;
}

.form-content {
	padding: 30px;
}


.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
	transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--primary);
	outline: none;
	box-shadow: 0 0 0 2px rgba(43, 80, 170, 0.2);
}

.form-row {
	display: flex;
	gap: 20px;
}

.form-col {
	flex: 1;
}

textarea {
	min-height: 120px;
	resize: vertical;
}

.file-constraints {
	font-size: 12px;
	color: var(--gray);
	margin-top: 5px;
}

.file-preview {
	margin-top: 15px;
}

.file-list {
	list-style: none;
	margin-top: 10px;
}

.file-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 12px;
	background: #f8f9fa;
	border-radius: 4px;
	margin-bottom: 5px;
}

.file-name {
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.file-size {
	color: var(--gray);
	font-size: 12px;
	margin-left: 10px;
}
        

.file-upload-container {
    position: relative;
}

.file-upload-label {
    display: block;
    cursor: pointer;
    /* 其他样式 */
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload {
	border: 2px dashed #ddd;
	border-radius: 5px;
	padding: 20px;
	text-align: center;
	transition: var(--transition);
	cursor: pointer;
}

.file-upload:hover {
	border-color: var(--primary);
}

.file-upload i {
	font-size: 24px;
	color: var(--primary);
	margin-bottom: 10px;
}

.file-upload p {
	color: var(--gray);
	margin-bottom: 10px;
}

.file-upload input[type="file"] {
	display: none;
}

.file-info {
	margin-top: 10px;
	font-size: 14px;
	color: var(--gray);
}

.btn-submit {
	background: var(--secondary);
	color: white;
	border: none;
	padding: 15px 30px;
	border-radius: 5px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: var(--transition);
	display: block;
	width: 100%;
}

.btn-submit:hover {
	background: #e45412;
	transform: translateY(-2px);
}

.required {
	color: #e74c3c;
}

.error-message {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 10px;
    border: 1px solid rgba(231, 76, 60, 0.2);
    font-size: 14px;
}

.file-status-error {
    color: #e74c3c;
    font-size: 12px;
    margin-left: 10px;
}

.remove-file {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    margin-left: 10px;
    font-size: 14px;
}

/* Footer */
footer {
	background: #1a1a1a;
	color: #ffffff;
	padding: 60px 0 20px;
}

.footer-content {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

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

.footer-column h3 {
	font-size: 20px;
	margin-bottom: 20px;
	color: var(--secondary);
}

.footer-column p {
	color: #ccc;
	font-size: 14px;
	line-height: 1.8;
}

.footer-links {
	list-style: none;
	padding: 0;
}

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

.footer-links a {
	display: flex;
	align-items: center;
	color: #ccc;
	transition: var(--transition);
}

.footer-links a:hover {
	color: white;
	transform: translateX(5px);
}

.footer-links i {
	margin-right: 10px;
	color: var(--secondary);
}

.footer-bottom {
	text-align: center;
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid #333;
}

.footer-bottom p {
	font-size: 14px;
	color: #888;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.about-content {
		flex-direction: column;
		text-align: center;
	}

	.about-image {
		margin-bottom: 30px;
	}

	.contact-content {
		flex-direction: column;
	}
	
	.brands-track {
		width: calc(150px * 14);
		animation: scroll 20s linear infinite;
	}
	
	@keyframes scroll {
		0% {
			transform: translateX(0);
		}
		100% {
			transform: translateX(calc(-150px * 7));
		}
	}

	.top-bar-content {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}
	
	.header-content {
		flex-direction: column;
		text-align: center;
		display: block;
	}
	
/*	.nav-links {
		margin-top: 20px;
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.nav-links li {
		margin: 10px;
	}
	
	.mobile-toggle {
		display: block;
		position: absolute;
		top: 20px;
		right: 20px;
	}*/
	
	.footer-column {
		flex: 100%;
	}
	
	.hero {
		padding: 80px 0;
	}
	
	.hero-content h1 {
		font-size: 32px;
	}
	
	.section-title h2 {
		font-size: 28px;
	}
}

@media (max-width: 1024px) {
	.mobile-toggle {
		display: block;
		position: absolute;
        right: 20px;
        top: 20px;
	}
	
	.nav-links {
		position: fixed;
		top: 0;
		right: -100%;
		width: 70%;
		max-width: 300px;
		/*height: 100vh;*/
		background-color: var(--light);
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 10px 20px 40px;
		transition: right 0.4s ease-in-out;
		box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
		z-index: 999;
	}
	
	.nav-links.active {
		right: 0;
	}
	
	.nav-links li {
		margin: 15px 0;
		width: 100%;
		text-align: center;
	}
	
	.nav-links a {
		display: block;
		padding: 12px;
		width: 100%;
	}
	
	.button-container {
		margin: 20px 0 0 0;
		width: 100%;
	}
	
	.btn-nav {
		width: 100%;
		justify-content: center;
	}
	
	/* 移动端菜单关闭按钮 */
	.close-menu {
		position: absolute;
		top: 20px;
		right: 20px;
		font-size: 24px;
		background: none;
		border: none;
		color: white;
		cursor: pointer;
	}
	
	/* 移动端菜单遮罩 */
	.menu-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		opacity: 0;
		visibility: hidden;
		transition: all 0.4s ease;
		z-index: 998;
	}
	
	.menu-overlay.active {
		opacity: 1;
		visibility: visible;
	}
    .suppliers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .section-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 820px) {   
    .brand-item {
        padding: 10px;
		width: auto;
    }
}

/* 响应式设计 - 大型手机 */
@media (max-width: 768px) {
    .suppliers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .brand-item {
        padding: 10px;
		width: auto;
    }
    
    .brand-item img {
        max-height: 60px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .section-title p {
        font-size: 14px;
    }
}

/* 响应式设计 - 小型手机 */
@media (max-width: 480px) {
    .suppliers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .brand-item {
        padding: 8px;
		width: auto;
    }
    
    .brand-item img {
        max-height: 50px;
    }
    
    .section-title h2 {
        font-size: 20px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .featured-brands-section {
        padding: 30px 0;
    }
}

/* Hidden utility class */
.hidden {
    display: none !important;
    visibility: hidden !important;
}

/* Privacy & Terms */
.row {
    padding-top: 20px;
	padding-bottom: 20px;
}

ul.text {
    padding-left: 20px;
}