
.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;

}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h1 {
    font-size: 32px;
    font-weight: 200;
    letter-spacing: 1px;
    color: #222;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h1:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #3498db;
}

.section-title p {
    font-size: 16px;
    color: #777;
    font-weight: 300;
    margin-top: 15px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    will-change: transform, box-shadow;
}

.product-card:hover,
.product-card:focus {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    outline: none;
}

.product-card:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

.product-image-container {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.03);
}

.product-info {
    padding: 15px 12px;
    text-align: center;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-title {
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.product-capacity {
    font-size: 13px;
    color: #888;
    font-weight: 400;
}

/* 响应式设计 - 调整后的断点 */
@media (max-width: 1024px) and (min-width: 769px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .section-title h1 {
        font-size: 28px;
    }
    
    .product-info {
        padding: 12px 10px;
        min-height: 65px;
    }
    
    .product-title {
        font-size: 14px;
        -webkit-line-clamp: 3;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
    .section-title {
        margin-bottom: 30px;
    }
    
    .section-title h1 {
        font-size: 24px;
    }
    
    .product-info {
        min-height: 60px;
        padding: 10px 8px;
    }
    
    .product-title {
        font-size: 13px;
        line-height: 1.3;
    }
    
    .product-capacity {
        font-size: 12px;
    }
}
.Bespoke-bottle {
    display: block;
    width: 100%; /* 满宽度 */
    max-width: 1200px; /* 最大宽度(可选) */
    margin: 0 auto 20px; /* 上下0 左右自动(居中) 下方20px间距 */
    padding: 15px 20px; /* 内边距 */
    background-color: #ffffff; /* 白色背景 */
    border-bottom: 3px solid #1e90ff; /* 蓝色下划线作为装饰 */
    text-align: center; /* 文字居中 */
  }
  
  /* 标题文字样式 */
  .Bespoke-bottle h2 {
    color: #1e90ff; /* 蓝色文字 */
    font-size: 24px; /* 字号 */
    font-weight: 600; /* 中等粗细 */
    margin: 0; /* 去除默认边距 */
    padding: 0;
    letter-spacing: 1px; /* 字间距 */
    text-transform: uppercase; /* 字母大写(可选) */
  }
  .download-container {
    padding: 20px;  /* 内边距 20px */
    text-align: center; /* 内容居中 */
}

.download-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #0056b3;
}