/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* 导航栏优化 */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #6d4c41;
}

.nav-logo img{
  width: 4rem;
  height: 4rem;
}

.nav-logo i {
    margin-right: 12px;
    font-size: 2.2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: #6d4c41;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #6d4c41;
    transition: width 0.3s ease;
}

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

.nav-auth {
    display: flex;
    gap: 18px;
}

.btn-login, .btn-register {
    padding: 10px 22px;
    border: none;
    border-radius: 28px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-login {
    background: transparent;
    color: #6d4c41;
    border: 2px solid #6d4c41;
}

.btn-login:hover {
    background: #6d4c41;
    color: white;
    transform: translateY(-1px);
}

.btn-register {
    background: #6d4c41;
    color: white;
}

.btn-register:hover {
    background: #5d3c31;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #6d4c41;
    margin: 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* 优化后主页横幅 */
.hero {
    background: linear-gradient(135deg, #7d5e53 0%, #5d3c31 100%);
    color: white;
    padding: 140px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="tea-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.15)"/></pattern></defs><rect width="100" height="100" fill="url(%23tea-pattern)"/></svg>');
    opacity: 0.4;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 45px;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 25px;
}

.btn-primary, .btn-secondary {
    padding: 16px 35px;
    border: none;
    border-radius: 32px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-primary {
    background: white;
    color: #5d3c31;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: white;
    color: #5d3c31;
    border-color: white;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.tea-mountain {
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    position: relative;
}

.tea-mountain i {
    font-size: 8.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icons i {
    position: absolute;
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.65);
    animation: float 3.5s ease-in-out infinite;
}

.floating-icons i:nth-child(1) {
    top: 15%;
    left: 25%;
    animation-delay: 0s;
}

.floating-icons i:nth-child(2) {
    top: 65%;
    right: 18%;
    animation-delay: 1.2s;
}

.floating-icons i:nth-child(3) {
    bottom: 18%;
    left: 55%;
    animation-delay: 2.4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(-2deg); }
    50% { transform: translateY(-25px) rotate(2deg); }
}

/* 优化后核心功能 */
.features {
    padding: 100px 0;
    background: #fdfdfd;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 70px;
    color: #2d2d2d;
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #6d4c41;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 50px;
    padding: 0 20px;
}

.feature-card {
    text-align: center;
    padding: 50px 30px;
    border-radius: 25px;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-12px) rotate(1deg);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
    background: #fff8f5;
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #6d4c41, #5d3c31);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(109,76,65,0.2);
}

.feature-icon i {
    font-size: 2.3rem;
    color: white;
    text-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.feature-card h3 {
    font-size: 1.45rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #2d2d2d;
}

.feature-card p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* 图片优化通用样式 */
img {
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 1;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* 图片容器通用样式 */
.image-container {
    position: relative;
    overflow: hidden;
}

/* 茶区地图 */
.regions {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid #8d6e63;
    background: transparent;
    color: #8d6e63;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #8d6e63;
    color: white;
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.map-visual {
    position: relative;
    height: 400px;
    background-image: url('images/regions/map.jpg');
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.china-map {
    position: relative;
    width: 100%;
    height: 100%;
}

.region-marker {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
}

.region-marker i {
    font-size: 2rem;
    color: #8d6e63;
    animation: pulse 2s infinite;
}

.region-marker:hover i {
    color: #6d4c41;
    transform: scale(1.2);
}

.marker-label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #8d6e63;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.region-marker:hover .marker-label {
    opacity: 1;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.region-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.region-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.region-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.region-item:hover {
    background: #e8f5e8;
    transform: translateX(10px);
}

.region-item img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    max-width: 100%;
    max-height: 100%;
}

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

.region-details h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.region-details p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.region-type {
    background: #8d6e63;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

/* 品质评估 */
.quality {
    padding: 80px 0;
    background: white;
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quality-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.quality-info p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.quality-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.quality-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.quality-feature i {
    color: #8d6e63;
    font-size: 1.2rem;
}

.quality-demo {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
}

.upload-area {
    text-align: center;
    padding: 40px 20px;
    border: 2px dashed #8d6e63;
    border-radius: 15px;
    margin-bottom: 30px;
}

.upload-area i {
    font-size: 3rem;
    color: #8d6e63;
    margin-bottom: 15px;
}

.upload-area p {
    color: #666;
    margin-bottom: 20px;
}

.btn-upload {
    background: #8d6e63;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-upload:hover {
    background: #6d4c41;
}

.assessment-result h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.result-item span:first-child {
    width: 80px;
    font-size: 0.9rem;
    color: #666;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #8d6e63, #6d4c41);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.result-item span:last-child {
    width: 40px;
    text-align: right;
    font-weight: 600;
    color: #8d6e63;
}

.quality-grade {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.grade {
    background: #8d6e63;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: 600;
}

.confidence {
    color: #666;
    font-size: 0.9rem;
}

/* 茶旅体验 */
.travel {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
}

.travel-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.travel-routes h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

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

.route-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.route-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.route-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.route-card:hover .route-image img {
    transform: scale(1.05);
}

.route-duration {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.route-content {
    padding: 25px;
}

.route-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.route-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.route-highlights {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.route-highlights span {
    background: #8d6e63;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.route-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8d6e63;
}

.btn-book {
    background: #8d6e63;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-book:hover {
    background: #6d4c41;
    transform: translateY(-2px);
}

/* 文化交流 */
.community {
    padding: 80px 0;
    background: white;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8d6e63;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1rem;
}

.community-posts h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

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

.post-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.post-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.post-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.post-header:hover img {
    transform: scale(1.1);
}

.post-info h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.post-info span {
    color: #666;
    font-size: 0.9rem;
}

.post-content p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.post-images {
    margin-bottom: 20px;
}

.post-images img {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 1;
    aspect-ratio: 4/3;
}

.post-images img:hover {
    transform: scale(1.05);
}

.post-actions {
    display: flex;
    gap: 15px;
}

.post-actions button {
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-actions button:hover {
    color: #8d6e63;
}

/* 文化商城 */
.shop {
    padding: 80px 0;
    background: #f8f9fa;
}

.shop-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.shop-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 25px;
    border: 2px solid #8d6e63;
    background: transparent;
    color: #8d6e63;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn.active,
.category-btn:hover {
    background: #8d6e63;
    color: white;
}

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

.product-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #8d6e63;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-content {
    padding: 25px;
}

.product-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.product-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.9rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    color: #ffc107;
}

.product-rating span {
    color: #666;
    font-size: 0.9rem;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8d6e63;
}

.btn-add-cart {
    background: #8d6e63;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
}

.btn-add-cart:hover {
    background: #6d4c41;
    transform: translateY(-2px);
}

/* 页脚 */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #8d6e63;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

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

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

.footer-section ul li a:hover {
    color: #8d6e63;
}

.footer-section ul li i {
    margin-right: 10px;
    color: #8d6e63;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #8d6e63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #6d4c41;
    transform: translateY(-3px);
}

.newsletter {
    display: flex;
    gap: 10px;
}

.newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    background: #333;
    color: white;
}

.newsletter input::placeholder {
    color: #ccc;
}

.btn-subscribe {
    padding: 12px 20px;
    background: #8d6e63;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background: #6d4c41;
}

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

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .map-content {
        grid-template-columns: 1fr;
    }
    
    .quality-content {
        grid-template-columns: 1fr;
    }
    
    .route-cards {
        grid-template-columns: 1fr;
    }
    
    .post-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .community-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .map-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .shop-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .product-price {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .community-stats {
        grid-template-columns: 1fr;
    }
}