* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "XITS", "Source Han Serif", serif;
    font-size: 16px;
    color: #333333;
    background-color: #f9f7f1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header-container {
    width: 100%;
    background-color: #f9f7f1;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.logo-area {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-area svg {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.logo-area h1 {
    font-size: 30px;
    font-weight: 600;
    white-space: nowrap;
}

.header-link {
    font-size: 16px;
    color: #cc493d;
    text-decoration: none;
    padding: 3px 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-link:hover {
    background-color: #cc493d;
    color: #f9f7f1;
}

.header-divider {
    width: 100%;
    height: 2px;
    background-color: #000000;
}

@media screen and (max-width: 768px) {
    .header {
        padding: 12px 16px;
    }
    
    .logo-area svg {
        width: 40px;
        height: 40px;
    }
    
    .logo-area h1 {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    .header-link {
        padding: 6px 12px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .header {
        padding: 10px 12px;
    }
    
    .logo-area svg {
        width: 36px;
        height: 36px;
    }
    
    .logo-area h1 {
        font-size: 18px;
    }
    
    .header-link {
        padding: 4px 10px;
        font-size: 13px;
    }
}

.hero-section {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 24px;
}

.hero-image {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #e8e4d9;
}

.hero-overlay-text {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 60px;
    font-size: 28px;
    font-weight: 500;
    color: #cc493d;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 4px;
    background: linear-gradient(90deg, transparent, rgba(249, 247, 241, 0.7), transparent);
    padding: 20px 0;
    backdrop-filter: blur(2px);
}

.hero-overlay-text span {
    display: inline-block;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.hero-overlay-text span:hover {
    transform: translateY(-4px);
}


@media screen and (max-width: 768px) {
    .hero-section {
        padding: 0 16px;
        margin-top: 30px;
    }
    
    .hero-overlay-text {
        gap: 30px;
        font-size: 22px;
        padding: 15px 0;
    }
}

@media screen and (max-width: 480px) {
    .hero-overlay-text {
        gap: 15px;
        font-size: 16px;
        padding: 10px 0;
        bottom: 20px;
    }
}


.products-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 24px;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    color: #cc493d;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 16px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: #cc493d;
}

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

.product-card {
    background-color: #ffffff;
    border: 1px solid #e8e4d9;
    border-radius: 8px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(204, 73, 61, 0.1);
    border-color: #cc493d;
}

.product-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.product-icon svg {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-icon svg {
    transform: scale(1.1);
}

.product-title {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 16px;
    line-height: 1.4;
}

.product-desc {
    font-size: 16px;
    color: #666666;
    margin-bottom: 24px;
    line-height: 1.6;
    font-style: italic;
}

.product-link {
    display: inline-block;
    font-size: 16px;
    color: #cc493d;
    text-decoration: none;
    padding: 8px 24px;
    border: 1px solid #cc493d;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.product-link:hover {
    background-color: #cc493d;
    color: #f9f7f1;
}


@media screen and (max-width: 768px) {
    .products-section {
        padding: 0 16px;
        margin: 40px auto;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        padding: 24px 20px;
    }
    
    .product-title {
        font-size: 18px;
    }
}


.footer {
    background-color: #e8e4d9;
    margin-top: auto;
    border-top: 1px solid #d4cdbc;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    text-align: center;
}

.footer-links {
    margin-bottom: 24px;
}

.footer-links a {
    color: #333333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #cc493d;
}

.separator {
    color: #cc493d;
    margin: 0 12px;
}

.footer-info p {
    font-size: 14px;
    color: #666666;
    margin: 8px 0;
    line-height: 1.5;
}


@media screen and (max-width: 768px) {
    .footer-content {
        padding: 30px 16px;
    }
    
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .separator {
        display: none;
    }
    
    .footer-links a {
        font-size: 14px;
        padding: 4px 8px;
    }
    
    .footer-info p {
        font-size: 12px;
    }
}


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

@media screen and (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}