/* Goods Page Specific Styles */

/* Page Title */
.page-title {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8e6d8 0%, #f5d5c4 100%);
    text-align: center;
}

.page-title h2 {
    font-size: 48px;
    color: #e67e22;
    letter-spacing: 5px;
    margin-bottom: 10px;
    font-weight: 300;
}

.page-title p {
    font-size: 18px;
    color: #666;
    letter-spacing: 2px;
}

/* Goods Section */
.goods-section {
    padding: 80px 0;
    background: #fff;
}

/* Goods Grid */
.goods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

/* Goods Item */
.goods-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.goods-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.2);
}

/* Goods Image */
.goods-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f9f7f4;
}

.goods-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

/* Goods Badge */
.goods-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    background: #e67e22;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 20px;
}

.goods-badge.new {
    background: #ff6b6b;
}

/* Goods Info */
.goods-info {
    padding: 25px;
}

.goods-info h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.goods-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Goods Details */
.goods-details {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.goods-details span {
    font-size: 12px;
    color: #999;
    padding: 4px 10px;
    background: #f5f5f5;
    border-radius: 15px;
}

/* Price */
.price {
    font-size: 24px;
    color: #e67e22;
    font-weight: 600;
    margin: 0;
}

/* Purchase Info */
.purchase-info {
    text-align: center;
    padding: 60px 40px;
    background: #fef7f0;
    border-radius: 10px;
}

.purchase-info h3 {
    font-size: 28px;
    color: #e67e22;
    margin-bottom: 20px;
    font-weight: 400;
}

.purchase-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Online Store Button */
.online-store-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: #e67e22;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.online-store-btn:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(230, 126, 34, 0.4);
}

/* Active Navigation */
.global-nav a.active {
    color: #ffcc99;
}

.global-nav a.active::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        padding: 100px 0 40px;
    }
    
    .page-title h2 {
        font-size: 36px;
    }
    
    .goods-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .goods-image {
        height: 250px;
    }
    
    .purchase-info {
        padding: 40px 20px;
    }
}