/*
Theme Name: Stainless Cookware
Theme URI: https://yourcookware.com
Author: Stainless Cookware Co.
Author URI: https://yourcookware.com
Description: Professional stainless steel cookware manufacturer theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: stainless-cookware
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* 保持原有CSS样式 - 以下是style.css中的内容
/* CSS Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #c8102e;
	--primary-dark: #a00d25;
	--secondary: #1a1a2e;
	--text: #333;
	--text-light: #666;
	--bg-gray: #f5f5f5;
	--white: #fff;
	--gray-light: #f5f5f5;
	--text-primary: #333;
	--text-secondary: #666;
	--border: #e0e0e0;
	--shadow: 0 2px 15px rgba(0,0,0,0.1);
	--shadow-lg: 0 5px 25px rgba(0,0,0,0.12);
}

body {
	font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.6;
	color: var(--text);
	background: var(--white);
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

a:hover {
	color: var(--primary);
}

img {
	max-width: 100%;
	height: auto;
}

ul, ol {
	list-style: none;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 15px;
	color: var(--secondary);
}

h1 { font-size: 36px; }
h2 { font-size: 28px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Top Bar */
.top-bar {
	background: var(--secondary);
	color: #bbb;
	padding: 10px 0;
	font-size: 13px;
}

.top-bar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.top-bar-left {
	display: flex;
	gap: 25px;
	align-items: center;
}

.top-bar-left span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.top-icon {
	font-size: 16px;
}

.top-bar-right {
	display: flex;
	align-items: center;
	gap: 15px;
}

.social-links a {
	color: #bbb;
	margin-left: 12px;
	font-size: 16px;
	transition: color 0.2s;
}

.social-links a:hover {
	color: var(--primary);
}

/* Header */
.site-header {
	background: var(--white);
	box-shadow: var(--shadow);
	position: sticky;
	top: 0;
	z-index: 9999;
}

.header-main-wrapper {
	background: var(--white);
	padding: 15px 0;
}

.header-main {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 8px;
	background: transparent;
	border: none;
	cursor: pointer;
}

.mobile-menu-toggle i {
	font-size: 20px;
}

.header-search {
	flex: 1;
	max-width: 450px;
}

.header-quote-btn {
	padding: 12px 24px;
	background: var(--primary);
	color: var(--white);
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: 4px;
	transition: all 0.3s;
	white-space: nowrap;
}

.header-quote-btn:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}

.site-logo {
	font-size: 28px;
	font-weight: 700;
	color: var(--primary);
	text-decoration: none;
	letter-spacing: 1px;
}

.site-logo span {
	color: var(--secondary);
}

.header-right {
	display: flex;
	align-items: center;
	gap: 20px;
}

.search-box {
	display: flex;
	align-items: center;
	background: var(--bg-gray);
	border-radius: 6px;
	overflow: hidden;
	border: 2px solid transparent;
	transition: border-color 0.3s, box-shadow 0.3s;
}

.search-box:focus-within {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

.search-box input {
	border: none;
	padding: 12px 16px;
	background: transparent;
	min-width: 200px;
	font-size: 14px;
	width: 100%;
}

.search-box input::placeholder {
	color: #999;
}

.search-box button {
	border: none;
	background: var(--primary);
	color: white;
	padding: 12px 18px;
	cursor: pointer;
	transition: background 0.3s;
	font-size: 16px;
}

.search-box button:hover {
	background: var(--primary-dark);
}

/* Navigation */
.nav-wrapper {
	background: var(--secondary);
}

.main-nav {
	display: flex;
	align-items: center;
}

.main-nav > ul {
	display: flex;
	align-items: center;
}

.main-nav > ul > li {
	position: relative;
}

.main-nav > ul > li > a {
	display: block;
	padding: 15px 20px;
	color: var(--white);
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a {
	background: var(--primary);
}

.mobile-menu-toggle {
	display: none;
	background: var(--primary);
	color: white;
	border: none;
	padding: 12px 20px;
	cursor: pointer;
	font-size: 16px;
	align-items: center;
	gap: 8px;
	border-radius: 4px;
	transition: all 0.3s ease;
	z-index: 9999;
}

.mobile-menu-toggle:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
}

/* Hero Slider */
.hero-slider {
	position: relative;
	overflow: hidden;
	height: 550px;
	background: var(--secondary);
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	will-change: opacity;
}

.slide.active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.slide-bg {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	position: relative;
}

.slide-bg::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.6) 100%);
}

.slide-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: white;
	max-width: 700px;
	padding: 0 20px;
}

.slide-content h1 {
	font-size: 48px;
	font-weight: 700;
	color: white;
	margin-bottom: 20px;
	text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slide-content p {
	font-size: 18px;
	margin-bottom: 30px;
	opacity: 0.9;
}

.slide-btn {
	display: inline-block;
	padding: 14px 35px;
	background: var(--primary);
	color: white;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.slide-btn:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(200,16,46,0.4);
}

.slider-nav {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}

.slider-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255,255,255,0.4);
	cursor: pointer;
	transition: all 0.3s ease;
}

.slider-dot.active {
	background: var(--primary);
	width: 35px;
	border-radius: 6px;
}

.slider-arrows {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0 30px;
	pointer-events: none;
}

.slider-prev,
.slider-next {
	pointer-events: auto;
	width: 50px;
	height: 50px;
	background: rgba(255,255,255,0.15);
	border: none;
	border-radius: 50%;
	color: white;
	font-size: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(5px);
}

.slider-prev:hover,
.slider-next:hover {
	background: var(--primary);
}

/* Content Layout */
.content-wrapper {
	display: flex;
	gap: 30px;
	padding: 40px 0;
}

.sidebar-area {
	width: 280px;
	flex-shrink: 0;
}

.content-main {
	flex: 1;
}

/* Sidebar Widgets */
.sidebar-widget {
	background: white;
	border: 1px solid var(--border);
	margin-bottom: 25px;
	border-radius: 4px;
	overflow: hidden;
}

.sidebar-widget h3 {
	background: var(--secondary);
	color: white;
	padding: 15px 20px;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin: 0;
}

.widget-content {
	padding: 20px;
}

.sidebar-widget ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sidebar-widget ul li {
	margin: 0;
	padding: 0;
}

.sidebar-widget ul li a {
	display: block;
	padding: 12px 18px;
	background: var(--bg-gray);
	border-radius: 4px;
	transition: all 0.3s ease;
	text-decoration: none;
	color: var(--text);
	font-size: 14px;
}

.sidebar-widget ul li a:hover {
	background: var(--primary);
	color: white;
	transform: translateX(5px);
}

.contact-widget p {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.contact-widget .product-btn {
	display: block;
	text-align: center;
	margin-top: 15px;
}

/* Product Grid */
.filter-bar {
	background: var(--bg-gray);
	padding: 15px 20px;
	border-radius: 4px;
	margin-bottom: 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.product-item {
	background: white;
	border: 1px solid var(--border);
	border-radius: 6px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.product-item:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-5px);
}

.product-image {
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-gray);
	font-size: 50px;
	overflow: hidden;
}

.product-image img {
	max-height: 100%;
	object-fit: contain;
}

.product-info {
	padding: 15px;
}

.product-name {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--secondary);
	display: block;
}

.product-name:hover {
	color: var(--primary);
}

.product-price {
	font-size: 16px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 8px;
}

.product-desc {
	font-size: 12px;
	color: var(--text-light);
	margin-bottom: 12px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-btn {
	display: inline-block;
	padding: 8px 20px;
	background: var(--primary);
	color: white;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.product-btn:hover {
	background: var(--primary-dark);
}

/* Section Styles */
.section {
	padding: 60px 0;
}

.section-gray {
	background: var(--bg-gray);
}

.section-title {
	text-align: center;
	margin-bottom: 40px;
}

.section-title h2 {
	font-size: 32px;
	text-transform: uppercase;
	letter-spacing: 1px;
	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(--primary);
}

.more-link {
	float: right;
	color: var(--primary);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.5px;
}

/* Features Section */
.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.feature-item {
	text-align: center;
	padding: 30px 20px;
	background: white;
	border-radius: 8px;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
}

.feature-item:hover {
	transform: translateY(-5px);
}

.feature-icon {
	font-size: 48px;
	margin-bottom: 20px;
}

.feature-item h3 {
	font-size: 18px;
	margin-bottom: 10px;
}

.feature-item p {
	font-size: 14px;
	color: var(--text-light);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #2d1f3c 100%);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1;
    font-family: 'Arial', sans-serif;
    min-height: 58px; /* Ensure consistent height */
}

.stat-item p {
    color: #999;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Responsive for Stats Section */
@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item h3 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
}

.news-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.news-image {
    height: 200px;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    overflow: hidden;
    position: relative;
}

.news-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.news-item:hover .news-image::before {
    opacity: 1;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 25px;
}

.news-date {
    font-size: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    font-weight: 600;
}

.news-content h3 {
    font-size: 17px;
    margin-bottom: 12px;
    line-height: 1.5;
    font-weight: 600;
}

.news-content h3 a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.news-content h3 a:hover {
    color: var(--primary);
}

.news-excerpt {
    font-size: 14px;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.7;
}

.news-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.3s;
}

.news-more:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* CTA Section */
.cta-section {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	padding: 70px 0;
	text-align: center;
}

.cta-content h2 {
	color: white;
	font-size: 32px;
	margin-bottom: 15px;
}

.cta-content p {
	color: rgba(255,255,255,0.9);
	font-size: 16px;
	max-width: 600px;
	margin: 0 auto 30px;
}

.cta-btn {
	display: inline-block;
	padding: 15px 40px;
	background: white;
	color: var(--primary);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.cta-btn:hover {
	background: var(--secondary);
	color: white;
	transform: translateY(-2px);
}

/* Page Title */
.page-title {
	padding: 40px 0;
	text-align: center;
}

.page-title h1 {
	font-size: 36px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.page-title p {
	color: var(--text-light);
	font-size: 16px;
}

/* About Page */
.about-section {
	display: flex;
	gap: 50px;
	align-items: center;
}

.about-image {
	flex: 0 0 45%;
	font-size: 150px;
	text-align: center;
	background: var(--bg-gray);
	padding: 60px 20px;
	border-radius: 8px;
}

.about-content {
	flex: 1;
}

.about-content h1 {
	font-size: 32px;
	margin-bottom: 20px;
}

.about-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	margin: 25px 0;
}

.about-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
}

/* Contact Page */
.contact-form {
	background: white;
	padding: 30px;
	border-radius: 6px;
	box-shadow: var(--shadow);
}

.contact-form h2 {
	margin-bottom: 25px;
}

.form-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 20px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid var(--border);
	border-radius: 4px;
	font-size: 14px;
	font-family: inherit;
}

.form-group textarea {
	min-height: 120px;
	resize: vertical;
}

.submit-btn {
	background: var(--primary);
	color: white;
	border: none;
	padding: 14px 35px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.submit-btn:hover {
	background: var(--primary-dark);
}

/* Contact Form Simple Section */
.contact-form-section-simple {
	padding: 60px 0;
	background: #f5f5f5;
}

.form-card-simple {
	max-width: 600px;
	margin: 0 auto;
	background: white;
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.form-card-simple .form-header {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	padding: 30px 40px;
	text-align: center;
}

.form-card-simple .form-header h2 {
	color: white;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 8px;
}

.form-card-simple .form-header p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 13px;
	margin: 0;
}

.form-card-simple .contact-form {
	padding: 35px 40px;
	box-shadow: none;
	border-radius: 0;
}

.form-card-simple .form-row {
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.form-card-simple .form-group select {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid var(--border);
	border-radius: 4px;
	font-size: 14px;
	font-family: inherit;
	background: white;
}

/* Contact Info Section */
.contact-info-section {
	padding-right: 20px;
}

.contact-info-section .section-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 10px;
	text-align: left;
}

.contact-info-section .section-subtitle {
	font-size: 14px;
	color: var(--text-secondary);
	margin-bottom: 35px;
}

/* Contact Cards */
.contact-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 30px;
}

.contact-card {
	background: white;
	padding: 25px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.contact-card:hover {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
	border-color: var(--primary);
}

.card-icon {
	width: 55px;
	height: 55px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin-bottom: 18px;
	color: white;
}

.card-icon-address {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-icon-phone {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.card-icon-email {
	background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.card-icon-clock {
	background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.contact-card h3 {
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--text-primary);
	margin-bottom: 10px;
}

.contact-card p {
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.6;
	margin: 0;
}

/* WhatsApp Button */
.whatsapp-contact {
	margin-top: 15px;
}

.whatsapp-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
	color: white;
	padding: 16px 30px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn i {
	margin-right: 10px;
	font-size: 18px;
}

/* Contact Form Section */
.contact-form-section {
	position: relative;
}

.form-card {
	background: white;
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.form-header {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	padding: 30px 40px;
	text-align: center;
}

.form-header h2 {
	color: white;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 8px;
}

.form-header p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 13px;
	margin: 0;
}

.contact-form-section .contact-form {
	padding: 35px 40px;
	box-shadow: none;
	border-radius: 0;
}

/* Map Section */
.map-section {
	padding: 50px 0;
	background: white;
}

.map-container {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
}

.map-content {
	text-align: center;
	color: white;
}

.map-content i {
	font-size: 48px;
	margin-bottom: 20px;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.8;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.map-content h3 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 10px;
}

.map-content p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 20px;
}

.map-link {
	display: inline-block;
	background: white;
	color: var(--primary);
	padding: 12px 30px;
	border-radius: 30px;
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

.map-link:hover {
	background: var(--primary);
	color: white;
}

.map-placeholder img {
	width: 100%;
	height: 350px;
	object-fit: cover;
}

/* Form Row Adjustment */
.contact-form-section .form-row {
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.contact-form-section .form-group select {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid var(--border);
	border-radius: 4px;
	font-size: 14px;
	font-family: inherit;
	background: white;
}

/* Pagination */
.pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 40px;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 15px;
	background: var(--bg-gray);
	color: var(--text);
	border-radius: 4px;
	font-weight: 600;
	transition: all 0.2s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
	background: var(--primary);
	color: white;
}

/* Breadcrumb */
.breadcrumb-section {
	background: var(--bg-gray);
	padding: 15px 0;
	border-bottom: 1px solid var(--border);
}

.breadcrumb {
	font-size: 13px;
	color: var(--text-light);
}

.breadcrumb a {
	color: var(--text);
}

.breadcrumb a:hover {
	color: var(--primary);
}

/* Page Title */
.page-title {
	text-align: center;
	padding: 60px 0;
}

.page-title h1 {
	font-size: 36px;
	color: var(--secondary);
	margin-bottom: 10px;
}

.page-title p {
	font-size: 16px;
	color: var(--text-light);
}

.section-gray {
	background: var(--bg-gray);
}

/* Page Content */
.page-content {
	line-height: 1.8;
}

.page-content p {
	margin-bottom: 20px;
	color: var(--text-secondary);
}

.page-content h2,
.page-content h3,
.page-content h4 {
	margin-bottom: 15px;
	color: var(--secondary);
}

/* About Section */
.about-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.about-image {
	height: 400px;
	background: linear-gradient(135deg, #DBEAFE 0%, #E0E7FF 50%, #DDD6FE 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 120px;
	border-radius: 12px;
}

.about-content h2 {
	font-size: 32px;
	margin-bottom: 20px;
	color: var(--secondary);
}

.about-content > p {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 20px;
	color: var(--text-secondary);
}

.about-features {
	margin-top: 30px;
}

.about-features li {
	padding: 8px 0;
	color: var(--text);
	font-weight: 500;
}

/* Product Detail Page */
.product-detail-wrapper {
	width: 100%;
}

/* Stats Section */
.stats-section {
	background: linear-gradient(135deg, #1E3A8A 0%, #3730A3 50%, #5B21B6 100%);
	padding: 70px 0;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.stat-item {
	text-align: center;
	color: white;
	padding: 30px 20px;
	border-radius: 12px;
	background: rgba(255,255,255,0.05);
	transition: all 0.3s ease;
}

.stat-item:hover {
	background: rgba(255,255,255,0.1);
	transform: translateY(-5px);
}

.stat-item h3 {
	font-size: 48px;
	font-weight: 800;
	color: #FCD34D;
	margin-bottom: 8px;
}

.stat-item p {
	font-size: 16px;
	color: rgba(255,255,255,0.9);
	margin: 0;
	font-weight: 600;
}

/* FAQ Section */
.faq-section {
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 20px;
	border: 1px solid var(--border);
	border-radius: 8px;
	overflow: hidden;
	background: white;
}

.faq-question {
	padding: 20px 25px;
	background: white;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	color: var(--secondary);
	transition: all 0.3s ease;
}

.faq-question:hover {
	background: var(--bg-gray);
}

.faq-question::after {
	content: '+';
	font-size: 24px;
	color: var(--primary);
	transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
	content: '-';
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 500px;
}

.faq-answer p {
	padding: 0 25px 20px;
	margin: 0;
	color: var(--text-secondary);
	line-height: 1.8;
}

/* News Detail */
.news-detail-header {
	text-align: center;
	margin-bottom: 40px;
}

.news-detail-header h1 {
	font-size: 32px;
	margin-bottom: 15px;
	color: var(--secondary);
}

.news-detail-image {
	width: 100%;
	height: 400px;
	background: linear-gradient(135deg, #FEF3C7 0%, #FEE2E2 50%, #E0E7FF 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 80px;
	border-radius: 12px;
	margin-bottom: 40px;
}

.news-detail-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
}

.news-detail-content {
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.8;
}

.news-detail-content p {
	margin-bottom: 20px;
	color: var(--text-secondary);
}

/* Footer - Desktop */
.site-footer {
    background: var(--secondary);
    color: #999;
    padding: 60px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-column p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #aaa;
}

.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
    display: inline-block;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(200, 16, 46, 0.3);
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 20px;
	text-align: center;
	font-size: 13px;
}

/* Responsive */
@media (max-width: 1199px) {
	.container {
		padding: 0 20px;
	}
}

@media (max-width: 991px) {
	.product-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	
	.news-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.content-wrapper {
		flex-direction: column;
		display: flex;
	}
	
	.sidebar-area {
		width: 100%;
	}
	
	.content-main {
		width: 100%;
		flex: none;
	}
	
	.slide-content h1 {
		font-size: 36px;
	}
}

@media (max-width: 767px) {
	/* Content Layout Mobile */
	.content-wrapper {
		flex-direction: column;
		display: flex;
		padding: 20px 0;
	}
	
	.sidebar-area {
		width: 100%;
		margin-bottom: 20px;
	}
	
	.content-main {
		width: 100%;
		flex: none;
	}
	
	/* Contact Form Simple Mobile */
	.contact-form-section-simple {
		padding: 40px 0;
	}
	
	.form-card-simple {
		margin: 0 15px;
		border-radius: 12px;
	}
	
	.form-card-simple .form-header {
		padding: 20px;
	}
	
	.form-card-simple .form-header h2 {
		font-size: 18px;
	}
	
	.form-card-simple .contact-form {
		padding: 25px;
	}
	
	.form-card-simple .form-row {
		grid-template-columns: 1fr;
	}
	
	/* Contact Grid Mobile */
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	/* Contact Section Mobile */
	.contact-section {
		padding: 40px 0;
	}
	
	.contact-wrapper {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.contact-info-section {
		padding-right: 0;
	}
	
	.section-title {
		font-size: 22px;
	}
	
	.contact-cards {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.contact-card {
		padding: 20px;
	}
	
	.card-icon {
		width: 45px;
		height: 45px;
		font-size: 18px;
	}
	
	.form-card {
		border-radius: 12px;
	}
	
	.form-header {
		padding: 20px;
	}
	
	.form-header h2 {
		font-size: 18px;
	}
	
	.contact-form-section .contact-form {
		padding: 25px;
	}
	
	.contact-form-section .form-row {
		grid-template-columns: 1fr;
	}
	
	.map-section {
		padding: 30px 0;
	}
	
	.map-content i {
		font-size: 36px;
	}
	
	.map-content h3 {
		font-size: 18px;
	}
	
	.map-placeholder img {
		height: 250px;
	}
	
	/* Top Bar Mobile */
	.top-bar {
		padding: 8px 0;
	}
	
	.top-bar .container {
		justify-content: center;
	}
	
	.top-bar-left {
		flex-direction: column;
		gap: 5px;
	}
	
	.top-bar-right {
		display: none;
	}
	
	/* Header Mobile */
	.header-main-wrapper {
		padding: 12px 0;
	}
	
	.header-main {
		flex-wrap: wrap;
		justify-content: space-between;
	}
	
	.mobile-menu-toggle {
		display: flex;
		order: 1;
	}
	
	.site-logo {
		order: 2;
		font-size: 22px;
	}
	
	.header-search {
		order: 4;
		width: 100%;
		flex: none;
		max-width: 100%;
		margin-top: 12px;
	}
	
	.header-actions {
		order: 3;
		display: none;
	}
	
	/* Navigation Mobile */
	.main-nav {
		position: relative;
	}
	
	.mobile-menu-toggle {
		display: flex;
		order: 1;
		position: relative;
		z-index: 9999;
	}
	
	.main-nav > ul {
		position: fixed;
		top: 0;
		left: -100%;
		width: 85%;
		max-width: 320px;
		height: 100vh;
		background: var(--secondary);
		box-shadow: 5px 0 25px rgba(0,0,0,0.3);
		padding: 80px 20px 30px;
		display: flex;
		flex-direction: column;
		gap: 5px;
		z-index: 9997;
		transition: left 0.3s ease;
		overflow-y: auto;
	}
	
	.main-nav.active > ul {
		left: 0;
	}
	
	.main-nav > ul > li > a {
		padding: 15px 20px;
		border-radius: 6px;
		background: rgba(255,255,255,0.05);
		color: white;
		font-size: 15px;
		transition: all 0.2s ease;
		display: block;
	}
	
	.main-nav > ul > li > a:hover {
		background: var(--primary);
		color: white;
		transform: translateX(5px);
	}
	
	.main-nav > ul > li.active > a {
		background: var(--primary);
	}
	
	/* Product Grid Mobile */
	.product-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	
	.product-image {
		height: 140px;
		font-size: 42px;
	}
	
	.product-info {
		padding: 10px;
	}
	
	.product-name {
		font-size: 13px;
	}
	
	.product-price {
		font-size: 14px;
	}
	
	.product-btn {
		padding: 8px 16px;
		font-size: 12px;
	}
	
	/* Sidebar Mobile - Categories */
	.sidebar-widget ul {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 8px;
	}
	
	.sidebar-widget ul li a {
		padding: 10px 14px;
		font-size: 13px;
		background: var(--secondary);
		color: var(--white);
	}
	
	.sidebar-widget ul li a:hover {
		background: var(--primary);
	}
	
	/* Features Mobile */
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	
	.feature-item {
		padding: 20px 15px;
	}
	
	.feature-icon {
		font-size: 40px;
	}
	
	/* News Mobile */
	.news-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
	
	.news-image {
		height: 140px;
		font-size: 40px;
	}
	
	.news-content {
		padding: 15px;
	}
	
	.news-content h3 {
		font-size: 14px;
		line-height: 1.4;
	}
	
	.news-date {
		font-size: 11px;
		margin-bottom: 8px;
	}
	
	.news-excerpt {
		display: none;
	}
	
	.news-more {
		font-size: 11px;
		gap: 4px;
	}
	
	/* Stats Mobile */
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
	
	.stat-item {
		padding: 20px 10px;
	}
	
	.stat-item h3 {
		font-size: 36px;
	}
	
	/* Page Title Mobile */
	.page-title {
		padding: 40px 0;
	}
	
	.page-title h1 {
		font-size: 28px;
	}
	
	.page-title p {
		font-size: 14px;
	}
	
	/* About Section & Product Detail Mobile */
	.about-section {
		grid-template-columns: 1fr !important;
		gap: 20px;
	}

	.about-image {
		height: auto !important;
		min-height: 200px;
		font-size: 60px !important;
	}

	.about-content h1 {
		font-size: 24px !important;
	}

	.about-content > p {
		font-size: 14px !important;
	}

	.product-detail-wrapper {
		padding: 0 5px;
	}
	
	/* FAQ Mobile */
	.faq-question {
		padding: 15px 20px;
		font-size: 14px;
	}
	
	.faq-question::after {
		font-size: 20px;
	}
	
	.faq-answer p {
		padding: 0 20px 15px;
		font-size: 14px;
	}
	
	/* News Detail Mobile */
	.news-detail-header h1 {
		font-size: 24px;
	}
	
	.news-detail-image {
		height: 250px;
		font-size: 60px;
		margin-bottom: 30px;
	}
	
	/* Footer Mobile - Different Style from PC */
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.footer-column {
		padding: 20px;
		background: rgba(255,255,255,0.03);
		border-radius: 8px;
		border: 1px solid rgba(255,255,255,0.05);
	}
	
	.footer-column h4::after {
		width: 30px;
	}
	
	.footer-column h4 {
		font-size: 15px;
		margin-bottom: 20px;
	}
	
	.footer-column ul li {
		margin-bottom: 10px;
	}
	
	.footer-column ul li a {
		font-size: 13px;
	}
	
	.footer-social {
		gap: 8px;
		margin-top: 20px;
	}
	
	.footer-social a {
		width: 40px;
		height: 40px;
		font-size: 14px;
	}
	
	/* Slider Arrows Mobile */
	.slider-arrows {
		padding: 0 15px;
	}
	
	.slider-prev,
	.slider-next {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
	
	/* Other Adjustments */
	.hero-slider {
		height: 350px;
	}
	
	.slide-content h1 {
		font-size: 26px;
	}
	
	.slide-content p {
		font-size: 13px;
	}
	
	.slide-btn {
		padding: 11px 24px;
		font-size: 13px;
	}
	
	.section {
		padding: 35px 0;
	}
	
	.section-title h2 {
		font-size: 22px;
	}
	
	.cta-section {
		padding: 40px 20px;
	}
	
	.cta-content h2 {
		font-size: 22px;
	}
	
	.cta-content p {
		font-size: 13px;
	}
	
	.site-footer {
		padding: 30px 0 15px;
	}
}

@media (max-width: 576px) {
	.container {
		padding: 0 12px;
	}
	
	/* Header Small Mobile */
	.header-main {
		gap: 10px;
	}
	
	.site-logo {
		font-size: 18px;
	}
	
	/* Footer Small Mobile */
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	/* News Small Mobile - Keep 2 columns */
	.news-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	
	.news-image {
		height: 110px;
		font-size: 36px;
	}
	
	.news-content {
		padding: 12px;
	}
	
	.news-content h3 {
		font-size: 13px;
	}
	
	.news-more {
		font-size: 10px;
	}
	
	.product-image {
		height: 120px;
		font-size: 36px;
	}
	
	.product-info {
		padding: 8px;
	}
	
	.product-name {
		font-size: 12px;
		margin-bottom: 5px;
	}
	
	.product-price {
		font-size: 13px;
		margin-bottom: 5px;
	}
	
	.product-desc {
		display: none;
	}
	
	.product-btn {
		padding: 6px 12px;
		font-size: 11px;
	}
	
	.features-grid {
		grid-template-columns: 1fr;
	}
	
	.hero-slider {
		height: 300px;
	}
	
	.slide-content h1 {
		font-size: 22px;
	}
	
	.slide-content p {
		font-size: 12px;
	}
	
	.section {
		padding: 25px 0;
	}
	
	.section-title h2 {
		font-size: 20px;
	}
	
	.stat-item {
		padding: 15px 10px;
	}
	
	.stat-item h3 {
		font-size: 28px;
	}
	
	.stat-item p {
		font-size: 11px;
	}
}
