/* 商店页面样式 */
:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --text-color: #2C3E50;
    --bg-color: #F7F9FC;
    --card-bg: #FFFFFF;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 商店头部样式 */
.shop-header {
    background: linear-gradient(rgba(255, 107, 107, 0.9), rgba(78, 205, 196, 0.9)), url('header-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.header-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.shop-btn {
    background-color: white;
    color: var(--primary-color);
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.2em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shop-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* 特色服务样式 */
.features-section {
    padding: 80px 20px;
    background-color: var(--bg-color);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature {
    padding: 30px;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}
.feature img{
    border-radius: 15px;
    width: 80%;
    height: 80%;
    object-fit: cover;
}
.franchise-image img{
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature:hover {
    transform: translateY(-10px);
}

/* 产品展示样式 */
.products-section {
    padding: 80px 20px;
    background-color: var(--bg-color);
}

.products-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5em;
    color: var(--text-color);
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 20px;
}

.reverse .product-content {
    flex-direction: row-reverse;
}

.product-content img {
    width: 45%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.product-info {
    width: 55%;
    padding: 20px;
}

.introducing {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.9em;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.product-info h3 {
    font-size: 2em;
    margin: 15px 0;
    color: var(--text-color);
}

.product-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.product-btn {
    padding: 12px 25px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1em;
}

.product-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* 客户评价样式 */
.testimonials-section {
    padding: 80px 20px;
    background-color: var(--bg-color);
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.rating {
    color: #FFD700;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.customer-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.customer-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

/* 加盟信息样式 */
.franchise-section {
    padding: 80px 20px;
}

.franchise-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.franchise-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* 订阅区域样式 */
.newsletter-section {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.newsletter-form {
    max-width: 500px;
    margin: 30px auto 0;
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 25px;
}

.newsletter-form button {
    padding: 15px 30px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .franchise-content {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .header-content h1 {
        font-size: 2em;
    }

    .product-content {
        flex-direction: column;
        padding: 15px;
    }

    .reverse .product-content {
        flex-direction: column;
    }

    .product-content img {
        width: 100%;
        height: 300px;
    }

    .product-info {
        width: 100%;
        padding: 15px;
        text-align: center;
    }

    .product-info h3 {
        font-size: 1.8em;
    }
} 